Skip to content

Commit 66f725a

Browse files
committed
add legacy node tests
1 parent 4bf36e8 commit 66f725a

1 file changed

Lines changed: 17 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,20 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node_version }}
3030
- run: pnpm install
31-
- run: npm install -g cross-env
32-
- run: pnpm test
31+
- run: pnpm test
32+
33+
legacy-tests:
34+
name: Legacy Tests
35+
runs-on: ubunut-latest
36+
continue-on-error: true
37+
strategy:
38+
matrix:
39+
node_version: ['0.12', '4', '6', '8', '10', '12', '14', '16', '18']
40+
41+
steps:
42+
- uses: actions/checkout@v6
43+
- uses: actions/setup-node@v6
44+
with:
45+
node-version: ${{ matrix.node_version }}
46+
- run: npm install
47+
- run: npm test

0 commit comments

Comments
 (0)