We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39d9df7 commit 29c03c5Copy full SHA for 29c03c5
.github/workflows/ci.yml
@@ -161,6 +161,11 @@ jobs:
161
git config --global core.autocrlf false
162
git config --global core.eol lf
163
164
+ # see https://github.com/ocaml/setup-ocaml/issues/815
165
+ - name: "Windows: set SHELLOPTS=igncr"
166
+ if: runner.os == 'Windows'
167
+ run: echo "SHELLOPTS=igncr" >>"$GITHUB_ENV"
168
+
169
- name: Checkout
170
uses: actions/checkout@v4
171
with:
@@ -328,8 +333,6 @@ jobs:
328
333
- name: "Check if syntax subfolder has changed"
329
334
id: syntax-diff
330
335
shell: bash
331
- env:
332
- SHELLOPTS: igncr # see https://github.com/ocaml/setup-ocaml/issues/815
336
run: |
337
if git diff --name-only --exit-code HEAD^ HEAD -- jscomp/syntax; then
338
echo "syntax_status=unchanged" >> $GITHUB_ENV
0 commit comments