Skip to content

Commit 16f2cc5

Browse files
committed
[actions] split out node 10-20, and 20+
1 parent 4a633fc commit 16f2cc5

File tree

4 files changed

+40
-5
lines changed

4 files changed

+40
-5
lines changed

.github/workflows/node-aught.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@ jobs:
99
range: '>= 0.10 < 10'
1010
type: minors
1111
command: npm run tests-only
12-
skip-ls-check: true
12+
13+
node:
14+
name: 'node < 10'
15+
needs: [tests]
16+
runs-on: ubuntu-latest
17+
steps:
18+
- run: true

.github/workflows/node-pretest.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ on: [pull_request, push]
55
jobs:
66
tests:
77
uses: ljharb/actions/.github/workflows/pretest.yml@main
8-
with:
9-
skip-engines: true # see https://github.com/browserify/browserify-sign/pull/49

.github/workflows/node-tens.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +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
15+
16+
node:
17+
name: 'node 10 - 20'
18+
needs: [tests]
19+
runs-on: ubuntu-latest
20+
steps:
21+
- run: true
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 'Tests: node.js >= 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:
12+
range: '>= 20'
13+
type: minors
14+
command: npm run tests-only
15+
16+
node:
17+
name: 'node >= 20'
18+
needs: [tests]
19+
runs-on: ubuntu-latest
20+
steps:
21+
- run: true

0 commit comments

Comments
 (0)