We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2379fa commit b1739c5Copy full SHA for b1739c5
1 file changed
.github/workflows/pull.yml
@@ -16,10 +16,10 @@ jobs:
16
test:
17
needs: security
18
name: Run Tests
19
- runs-on: ubuntu-latest
+ runs-on: [ubuntu-latest, windows-latest]
20
strategy:
21
matrix:
22
- version: [20, 22]
+ version: [20, 22, 24]
23
steps:
24
- name: 👀 Checkout Code
25
uses: actions/checkout@v4
@@ -43,5 +43,11 @@ jobs:
43
- name: 🧪 Run Tests (in Bun)
44
run: bun run test
45
46
+ - name: 🧪 Run Tests (in Node)
47
+ run: node --run test:node
48
+
49
- name: 🧪 Run Tests (in Node)
50
run: npm run test
51
52
53
+ run: npm run test:node
0 commit comments