Skip to content

Commit

Permalink
fix(ci): address segfault by running action/deps.js up-to-date check …
Browse files Browse the repository at this point in the history
…on windows (#337)
  • Loading branch information
magurotuna authored Oct 23, 2024
1 parent 705dbbd commit 429e0cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
run: deno check deployctl.ts

- name: action/deps.js up-to-date
if: runner.os == 'Linux' && matrix.deno == 'stable'
# On Linux the bundle command often segfaults. We use windows as a temporary
# workaround. See https://github.com/denoland/deployctl/issues/338
if: runner.os == 'Windows' && matrix.deno == 'stable'
run: |
# @deno/emit doesn't work if JSR modules are not in the cache.
# This is a workaround to cache the JSR modules beforehand.
Expand Down

0 comments on commit 429e0cd

Please sign in to comment.