Skip to content

Commit 4cd9ba0

Browse files
committed
Merge tag 'v1.22.9' into HEAD
v1.22.9 - [Deps] update `is-core-module` - [Dev Deps] update `@ljharb/eslint-config`, `array.prototype.map`, `npmignore`, `tape` - [actions] split out node 10-20, and 20+ - [Tests] replace `aud` with `npm audit`
2 parents f5df38d + a7c3075 commit 4cd9ba0

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

.github/workflows/node-tens.yml

+12-2
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

.github/workflows/node-twenties.yml

+21
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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"url": "https://github.com/sponsors/ljharb"
6969
},
7070
"dependencies": {
71-
"is-core-module": "^2.15.1",
71+
"is-core-module": "^2.16.0",
7272
"path-parse": "^1.0.7",
7373
"supports-preserve-symlinks-flag": "^1.0.0"
7474
},

0 commit comments

Comments
 (0)