We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7329b8e commit 8c9aedfCopy full SHA for 8c9aedf
.github/workflows/node-tens.yml
@@ -1,18 +1,14 @@
1
-name: 'Tests: node.js >= 10'
+name: 'Tests: node.js 10 - 20'
2
3
on: [pull_request, push]
4
5
+permissions:
6
+ contents: read
7
+
8
jobs:
9
tests:
10
uses: ljharb/actions/.github/workflows/node.yml@main
11
with:
- range: '>= 10'
12
+ range: '>= 10 < 20'
13
type: minors
14
command: npm run tests-only
-
- node:
- name: 'node >= 10'
15
- needs: [tests]
16
- runs-on: ubuntu-latest
17
- steps:
18
- - run: 'echo tests completed'
.github/workflows/node-twenties.yml
@@ -0,0 +1,14 @@
+name: 'Tests: node.js >= 20'
+on: [pull_request, push]
+jobs:
+ tests:
+ uses: ljharb/actions/.github/workflows/node.yml@main
+ with:
+ range: '>= 20'
+ type: minors
+ command: npm run tests-only
0 commit comments