1 parent 74e6c3f commit ac4ac04Copy full SHA for ac4ac04
1 file changed
.github/workflows/validate.yml
@@ -16,6 +16,7 @@ jobs:
16
name: 🔧 Setup
17
timeout-minutes: 15
18
strategy:
19
+ fail-fast: false
20
matrix:
21
os: [ubuntu-latest, windows-latest, macos-latest]
22
runs-on: ${{ matrix.os }}
@@ -27,7 +28,10 @@ jobs:
27
28
29
# SKIP_PLAYGROUND keeps typecheck/lint meaningful: problem playground apps
30
# intentionally fail solution tests/types, which would create false CI red.
31
+ # Use bash explicitly: Windows runners default to PowerShell, which cannot
32
+ # parse this retry loop.
33
- name: ▶️ Add repo
34
+ shell: bash
35
env:
36
# Kept getting npm ECOMPROMISED errors on windows. This fixed it.
37
npm_config_cache: ${{ runner.temp }}/npm-cache
0 commit comments