Skip to content

Commit 95f8b38

Browse files
committed
trying another git bash config (DH-18428-4)
1 parent d848cdf commit 95f8b38

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/e2e.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)