Skip to content

Commit 3244798

Browse files
committed
chore: remove testing of unsupported NodeJS vesrions
1 parent 4ad857b commit 3244798

File tree

2 files changed

+2
-34
lines changed

2 files changed

+2
-34
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,39 +7,7 @@ on:
77
branches: ["**"]
88

99
jobs:
10-
test-legacy:
11-
name: Legacy Node ${{ matrix.node }} • tests
12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
node: ["9", "10"]
16-
runs-on: ubuntu-20.04
17-
timeout-minutes: 30
18-
steps:
19-
- name: Checkout
20-
uses: actions/checkout@v4
21-
22-
- name: Setup Node.js (legacy)
23-
uses: actions/setup-node@v3
24-
with:
25-
node-version: ${{ matrix.node }}
26-
registry-url: 'https://registry.npmjs.org'
27-
28-
- name: Print Node & npm versions
29-
run: |
30-
node -v
31-
npm -v
32-
33-
- name: Install dependencies (legacy compatible)
34-
run: |
35-
npm config set registry https://registry.npmjs.org/
36-
npm install --no-package-lock --legacy-peer-deps || npm install --no-package-lock
37-
38-
- name: Run tests with timeout
39-
timeout-minutes: 25
40-
run: npm run test-with-temp-cloud
41-
42-
test-modern:
10+
test:
4311
name: Node ${{ matrix.node }} • tests
4412
strategy:
4513
fail-fast: false

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
"docs": "tools/scripts/docs.sh"
5656
},
5757
"engines": {
58-
"node": ">=9"
58+
"node": ">=12"
5959
}
6060
}

0 commit comments

Comments
 (0)