Skip to content

Commit c36baa9

Browse files
committed
wip: Skip Lighthouse step
1 parent 4dd2c01 commit c36baa9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/lighthouse_cron.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ on:
77
environment:
88
description: 'Environment to run LHCI against'
99
required: false
10-
default: 'prod'
10+
default: 'stage'
1111
type: choice
1212
options:
1313
- stage
1414
- prod
1515
jobs:
1616
lhci:
17-
name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'prod' }}
17+
name: Lighthouse Report - ${{ inputs.environment != null && inputs.environment || 'stage' }}
1818
runs-on: ubuntu-latest
19+
environment: ${{ inputs.environment != null && inputs.environment || 'stage' }}
1920
permissions:
2021
contents: read
2122
id-token: write
@@ -26,6 +27,7 @@ jobs:
2627
with:
2728
node-version: 20.9.x
2829
- name: Run Lighthouse CI
30+
if: false
2931
run: |
3032
npm install -g @lhci/[email protected]
3133
npm run lighthouse

0 commit comments

Comments
 (0)