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 a7c11a5 commit e648e1dCopy full SHA for e648e1d
.github/workflows/node-tens.yml
@@ -1,4 +1,4 @@
1
-name: 'Tests: node.js >= 10'
+name: 'Tests: node.js 10 - 20'
2
3
on: [pull_request, push]
4
@@ -9,6 +9,6 @@ jobs:
9
tests:
10
uses: ljharb/actions/.github/workflows/node.yml@main
11
with:
12
- range: '>= 10'
+ range: '>= 10 < 20'
13
type: minors
14
command: npm run tests-only
.github/workflows/node-twenties.yml
@@ -0,0 +1,14 @@
+name: 'Tests: node.js >= 20'
+
+on: [pull_request, push]
5
+permissions:
6
+ contents: read
7
8
+jobs:
+ tests:
+ uses: ljharb/actions/.github/workflows/node.yml@main
+ with:
+ range: '>= 20'
+ type: minors
+ command: npm run tests-only
0 commit comments