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 35f1e29 commit 93a5c02Copy full SHA for 93a5c02
.github/workflows/ci.yml
@@ -260,6 +260,7 @@ jobs:
260
261
- name: Get OPAM environment
262
if: steps.cache-opam-env.outputs.cache-hit != 'true'
263
+ shell: bash
264
run: |
265
command -v opam | tee .opam-path
266
opam env > .opam-env
@@ -353,7 +354,9 @@ jobs:
353
354
- name: "Check if syntax subfolder has changed"
355
id: syntax-diff
356
shell: bash
- run: >-
357
+ env:
358
+ SHELLOPTS: igncr # see https://github.com/ocaml/setup-ocaml/issues/815
359
+ run: |
360
if git diff --name-only --exit-code HEAD^ HEAD -- jscomp/syntax; then
361
echo "syntax_status=unchanged" >> $GITHUB_ENV
362
else
0 commit comments