blob: 73a05a0b87ea9ed2ac109742ed802ea86b43211d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: CI
on: [push]
jobs:
lighthouseci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: yarn install && yarn global add @lhci/cli@0.6.x
- run: yarn run build
- run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
|