diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-10-24 12:01:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-24 12:01:47 -0400 |
| commit | 91cc334507766411c20f013172dfcd044014f2c6 (patch) | |
| tree | 36baac5598701037d8e0c53f0f152317d7f626e9 /.github/workflows/main.yml | |
| parent | 05ca4038d78ff34e83ea9399dd6458609e2d4134 (diff) | |
| download | personal-website-91cc334507766411c20f013172dfcd044014f2c6.tar.gz personal-website-91cc334507766411c20f013172dfcd044014f2c6.tar.bz2 personal-website-91cc334507766411c20f013172dfcd044014f2c6.zip | |
Create main.yml
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fcba29c --- /dev/null +++ b/.github/workflows/main.yml @@ -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 }} |
