Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1ea4712

Browse filesBrowse files
committed
[actions] split out node 10-20, and 20+
1 parent 99b62d1 commit 1ea4712
Copy full SHA for 1ea4712

File tree

2 files changed

+27
-3
lines changed
Filter options

2 files changed

+27
-3
lines changed

‎.github/workflows/node-tens.yml

Copy file name to clipboardExpand all lines: .github/workflows/node-tens.yml
+6-3Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
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:

‎.github/workflows/node-twenties.yml

Copy file name to clipboard
+21Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.