We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed879e commit 9f65d3dCopy full SHA for 9f65d3d
.github/workflows/ci.yml
@@ -360,6 +360,14 @@ jobs:
360
if: runner.os != 'Windows'
361
run: make -C tests/gentype_tests/typescript-react-example clean test
362
363
+ # On Windows, after running setup-ocaml (if it wasn't cached yet or the cache couldn't be restored),
364
+ # Cygwin bash is used instead of Git Bash for Windows, breaking the rewatch tests.
365
+ # So we need to adjust the path to bring back Git Bash for Windows.
366
+ - name: Rewatch tests need Git Bash for Windows
367
+ if: ${{ runner.os == 'Windows' }}
368
+ run: echo "C:\Program Files\Git\bin" >> $GITHUB_PATH
369
+ shell: bash
370
+
371
- name: Run rewatch tests
372
run: ./rewatch/tests/suite-ci.sh
373
shell: bash
0 commit comments