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 29d1def commit a8da9baCopy full SHA for a8da9ba
1 file changed
.github/workflows/node-tens.yml
@@ -1,18 +1,21 @@
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
15
16
node:
- name: 'node >= 10'
17
+ name: 'node 10 - 20'
18
needs: [tests]
19
runs-on: ubuntu-latest
20
steps:
- - run: 'echo tests completed'
21
+ - run: true
0 commit comments