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 dae1cd5 commit eedf4aaCopy full SHA for eedf4aa
.github/workflows/tests.yaml
@@ -1,19 +1,18 @@
1
-name: tests
2
on:
3
- push
+
4
jobs:
5
- build:
+ test:
6
runs-on: ubuntu-latest
7
strategy:
8
matrix:
9
node-version:
10
- - 18.x
11
- 20.x
12
- - 22.x
13
- - 23.x
+ - 24.x
+ - latest
14
steps:
15
- - uses: actions/checkout@v4
16
- - uses: actions/setup-node@v4
+ - uses: actions/checkout@v5
+ - uses: actions/setup-node@v6
17
with:
18
node-version: ${{ matrix.node-version }}
19
- run: npm install-test
package.json
@@ -25,7 +25,7 @@
25
"lint": "eslint --cache ./lib ./bin/* ./test ./test/bin/* && echo ✓"
26
},
27
"engines": {
28
- "node": ">= 18"
+ "node": ">= 20"
29
30
"dependencies": {
31
"browserslist": "~4.24.4",
0 commit comments