We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd2c01 commit c36baa9Copy full SHA for c36baa9
.github/workflows/lighthouse_cron.yml
@@ -7,15 +7,16 @@ on:
7
environment:
8
description: 'Environment to run LHCI against'
9
required: false
10
- default: 'prod'
+ default: 'stage'
11
type: choice
12
options:
13
- stage
14
- prod
15
jobs:
16
lhci:
17
- name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'prod' }}
+ name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'stage' }}
18
runs-on: ubuntu-latest
19
+ environment: ${{ inputs.environment != null && inputs.environment || 'stage' }}
20
permissions:
21
contents: read
22
id-token: write
@@ -26,6 +27,7 @@ jobs:
26
27
with:
28
node-version: 20.9.x
29
- name: Run Lighthouse CI
30
+ if: false
31
run: |
32
npm install -g @lhci/[email protected]
33
npm run lighthouse
0 commit comments