We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12b013f commit b71124fCopy full SHA for b71124f
2 files changed
.github/workflows/ci.yml
@@ -26,4 +26,10 @@ jobs:
26
run: bun run build
27
28
- name: Test
29
- run: bun test --max-concurrency=1
+ shell: bash
30
+ run: |
31
+ set -euo pipefail
32
+ shopt -s globstar nullglob
33
+ for file in tests/**/*.test.ts; do
34
+ bun test "$file"
35
+ done
.github/workflows/publish.yml
@@ -49,7 +49,13 @@ jobs:
49
50
51
52
53
54
55
56
57
58
59
60
- name: Semantic release
61
run: |
0 commit comments