Bump tar from 6.2.0 to 6.2.1 #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lighthouse audit | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- name: npm install | |
run: npm install && npm install -g @lhci/cli | |
- name: build | |
run: npm run build | |
- name: Lighthouse audit CI | |
run: lhci autorun --config=./.lighthouseci/lighthouserc.json | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} |