We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b019f commit d1fd83eCopy full SHA for d1fd83e
.github/actions/run-publish-vr-screenshot/action.yml
@@ -39,9 +39,13 @@ runs:
39
node-version: '20'
40
41
- run: yarn install --frozen-lockfile
42
+ shell: bash
43
+
44
- run: yarn playwright install --with-deps
45
46
47
- name: Check if vrTests should be skipped
48
49
run: |
50
isPR=${{ github.event_name == 'pull_request' }}
51
echo "isPR=$isPR" >> $GITHUB_ENV
@@ -61,10 +65,12 @@ runs:
61
65
62
66
- name: Run VR tests
63
67
if: ${{ env.vrTestSkip == 'no' }}
68
64
69
run: yarn nx run ${{ inputs.vrTestPackageName }}:test-vr --nxBail
70
71
- name: Collate Artifacts
72
73
74
75
mkdir -p screenshots
76
cp -rf ${{ inputs.vrTestPackagePath }}/dist/screenshots/*.png screenshots/
0 commit comments