Skip to content

Commit 9330d75

Browse files
author
PEZ
committed
Use cygpath on windows
1 parent 203859e commit 9330d75

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,15 @@ jobs:
149149
bb: latest
150150

151151
- name: Run Tests
152+
if: runner.os == 'Linux'
152153
uses: coactions/setup-xvfb@6b00cf1889f4e1d5a48635647013c0508128ee1a
153154
with:
154-
run: bb run-e2e-tests-vsix ${{ env.VSIX_NAME }}
155+
run: bb run-e2e-tests-vsix "$VSIX_NAME"
156+
157+
- name: Run Tests Windows
158+
if: runner.os == 'Windows'
159+
shell: bash
160+
run: bb run-e2e-tests-vsix $(cygpath -w "$VSIX_NAME")
155161

156162
lint:
157163
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)