Skip to content

Commit a8da9ba

Browse files
committed
[actions] split out node 10-20, and 20+
1 parent 29d1def commit a8da9ba

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/node-tens.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
name: 'Tests: node.js >= 10'
1+
name: 'Tests: node.js 10 - 20'
22

33
on: [pull_request, push]
44

5+
permissions:
6+
contents: read
7+
58
jobs:
69
tests:
710
uses: ljharb/actions/.github/workflows/node.yml@main
811
with:
9-
range: '>= 10'
12+
range: '>= 10 < 20'
1013
type: minors
1114
command: npm run tests-only
1215

1316
node:
14-
name: 'node >= 10'
17+
name: 'node 10 - 20'
1518
needs: [tests]
1619
runs-on: ubuntu-latest
1720
steps:
18-
- run: 'echo tests completed'
21+
- run: true

0 commit comments

Comments
 (0)