Skip to content

Commit 64b67ff

Browse files
committed
fix(ci): chmod bin before test — Windows lock file strips executable bit (PI-02)
1 parent 5fc1cbd commit 64b67ff

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ jobs:
2929
run: npx tsc --noEmit
3030

3131
- name: Run tests
32-
run: npx vitest run
32+
run: |
33+
chmod +x node_modules/.bin/vitest 2>/dev/null || true
34+
node_modules/.bin/vitest run

0 commit comments

Comments
 (0)