Merge pull request #383 from lucasvazq/dependabot/pip/pillow-9.0.1 #452
Workflow file for this run
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 CI | |
on: [push, pull_request] | |
jobs: | |
Lighthouse: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
- name: Install and run Lighthouse CI | |
run: npm i -g @lhci/cli | |
- name: Run Lighthouse CI | |
run: | | |
lhci --config docs/examples/crossorigin_static_url/.lighthouserc.js autorun | |
lhci --config docs/examples/relative_static_url/.lighthouserc.js autorun | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} |