We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c52cb commit c1334b8Copy full SHA for c1334b8
1 file changed
.github/workflows/run-all-unit-tests.yaml
@@ -31,9 +31,18 @@ jobs:
31
run: loginctl enable-linger $(whoami)
32
33
- run: npm ci
34
- - run: npx tsx scripts/cleanup-github-actions.ts
+
35
+ - name: Run tests
36
+ if: runner.os == 'Linux'
37
+ run: npx tsx scripts/cleanup-github-actions.ts
38
39
# - name: Setup tmate session
40
# uses: mxschmitt/action-tmate@v3
41
- - run: npm run test -- ./test --no-file-parallelism --silent=passed-only
42
+ - name: Run tests (macOS - zsh login shell)
43
+ if: runner.os == 'macOS'
44
+ run: zsh -l -c 'npm run test -- ./test/shell --no-file-parallelism --silent=passed-only'
45
46
+ - name: Run tests (Linux)
47
48
+ run: npm run test -- ./test --no-file-parallelism --silent=passed-only
0 commit comments