Skip to content

Commit d99780a

Browse files
authored
correct variables (#60)
1 parent c8feb57 commit d99780a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/staging.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@ jobs:
5757
- name: run desktop psi
5858
run: |
5959
echo "DESKTOP_PSI_RESULTS<<EOF" >> $GITHUB_ENV
60-
echo "$(node PageSpeed.js ${{env.STAGING_URL}} desktop 50)" >> $GITHUB_ENV
60+
echo "$(node PageSpeed.js ${{vars.STAGING_URL}} desktop 50)" >> $GITHUB_ENV
6161
echo "EOF" >> $GITHUB_ENV
6262
- name: run mobile psi
6363
run: |
6464
echo "MOBILE_PSI_RESULTS<<EOF" >> $GITHUB_ENV
65-
echo "$(node PageSpeed.js ${{env.STAGING_URL}} mobile 50)" >> $GITHUB_ENV
65+
echo "$(node PageSpeed.js ${{vars.STAGING_URL}} mobile 50)" >> $GITHUB_ENV
6666
echo "EOF" >> $GITHUB_ENV
6767
- name: run axe accesibility test
6868
run: |
6969
echo "AXE_RESULTS<<EOF" >> $GITHUB_ENV
70-
echo "$(npx axe ${{env.STAGING_URL}})" >> $GITHUB_ENV
70+
echo "$(npx axe ${{vars.STAGING_URL}})" >> $GITHUB_ENV
7171
echo "EOF" >> $GITHUB_ENV
7272
- name: send notification psi
7373
if: ${{ github.ref == 'refs/heads/redesign2023' }}

0 commit comments

Comments
 (0)