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 e2dd38b commit 5b9ab27Copy full SHA for 5b9ab27
.github/workflows/ci.yml
@@ -366,9 +366,19 @@ jobs:
366
if: runner.os != 'Windows'
367
run: make -C tests/gentype_tests/typescript-react-example clean test
368
369
+ # - name: Rewatch tests need Git Bash for Windows
370
+ # if: ${{ runner.os == 'Windows' }}
371
+ # run: echo "C:\Program Files\Git\bin" >> $GITHUB_PATH
372
+ # shell: bash
373
+
374
- name: Run rewatch tests
- run: ./rewatch/tests/suite-ci.sh
375
shell: bash
376
+ run: |
377
+ # Rewatch tests need Git Bash for Windows
378
+ if [[ "$RUNNER_OS" == "Windows" ]]; then
379
+ export PATH="/c/Program Files/Git/bin:$PATH"
380
+ fi
381
+ ./rewatch/tests/suite-ci.sh
382
383
- name: Run syntax benchmarks
384
if: matrix.benchmarks
0 commit comments