blob: a2c8d8f80ded238d845382e817e6debb3d49bf27 (
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 && npm global add @lhci/cli@0.6.x
- run: yarn run build
- run: lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
|