deno.land / x / fresh@1.1.1 / .github / workflows / lighthouse.yml

lighthouse.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: live
on: [deployment_status]
jobs: lighthouse: name: lighthouse runs-on: ubuntu-latest if: github.event.deployment_status.state == 'success' && github.event.deployment_status.creator.login == 'deno-deploy[bot]'
env: URL: ${{ github.event.deployment_status.environment_url }}
steps: - uses: actions/checkout@v2
- name: Install Node.js 16.x uses: actions/setup-node@v1 with: node-version: 16.x
- name: Install Lighthouse CI run: npm install -g @lhci/cli@0.9.x
- name: Run Lighthouse run: lhci autorun --collect.url="$URL" --collect.url="$URL/docs/introduction" --upload.target="temporary-public-storage" env: LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
fresh

Version Info

Tagged at
a year ago