We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81829fb commit bc7a1bdCopy full SHA for bc7a1bd
1 file changed
.github/workflows/ci.yml
@@ -35,6 +35,29 @@ jobs:
35
- run: pnpm install
36
- run: pnpm test
37
38
+ super-legacy-node-test:
39
+ name: "Super Legacy Node Test"
40
+ runs-on: ubuntu-latest
41
+ timeout-minutes: 5
42
+ strategy:
43
+ fail-fast: false
44
+ matrix:
45
+ node-version:
46
+ - "0.10"
47
+ - "0.12"
48
+ - 4
49
+
50
+ steps:
51
+ - uses: actions/checkout@v6
52
+ # use the built-in npm for these super old tests
53
+ - run: cat package.json | jq "del(.packageManager)" | tee package.json
54
+ - uses: actions/setup-node@v6
55
+ with:
56
+ node-version: ${{ matrix.node-version }}
57
+ cache: npm
58
+ - run: npm install
59
+ - run: npm test
60
61
legacy-node-test:
62
name: "Legacy Node Test"
63
runs-on: ubuntu-latest
@@ -43,10 +66,6 @@ jobs:
66
fail-fast: false
67
matrix:
68
node-version:
- - 0.10
- - 0.12
- - 4
- - 5
69
- 6
70
- 8
71
- 10
0 commit comments