Create main.yml

This commit is contained in:
Andrew Lee 2022-10-24 12:01:47 -04:00 committed by GitHub
parent 05ca4038d7
commit 91cc334507
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,13 @@
name: CI
on: [push]
jobs:
lighthouseci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install && npm install -g @lhci/cli@0.6.x
- run: npm run build
- run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}