File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,20 @@ jobs:
2424 with :
2525 node-version-file : ' .nvmrc'
2626 cache : ' npm'
27- - name : Configure npm to use Git Bash on Windows
28- if : runner.os == 'Windows'
29- run : npm config set shell "C:\\Program Files\\Git\\bin\\bash.exe"
30- shell : cmd # Run this command in cmd.exe to set npm config
27+ # - name: Configure npm to use Git Bash on Windows
28+ # if: runner.os == 'Windows'
29+ # run: npm config set shell "C:\\Program Files\\Git\\bin\\bash.exe"
30+ # shell: cmd # Run this command in cmd.exe to set npm config
3131 - run : npm ci
3232 - name : Run end-to-end tests (Linux)
3333 if : runner.os == 'Linux'
3434 run : xvfb-run npm run test:e2e
35+ # - name: Run end-to-end tests (Windows)
36+ # if: runner.os == 'Windows'
37+ # run: npm run test:e2e
3538 - name : Run end-to-end tests (Windows)
36- if : runner.os == 'Windows'
37- run : npm run test:e2e
39+ run : |
40+ "C:/Program Files/Git/bin/bash.exe" -c " npm run clean"
3841 - name : Upload Screenshots as Artifact
3942 if : ${{ always() }}
4043 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments