Skip to content

Commit

Permalink
Merge tag 'v1.22.9' into HEAD
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
ljharb committed Dec 13, 2024
2 parents f5df38d + a7c3075 commit 4cd9ba0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/node-tens.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
name: 'Tests: node.js >= 10'
name: 'Tests: node.js 10 - 20'

on: [pull_request, push]

permissions:
contents: read

jobs:
tests:
uses: ljharb/actions/.github/workflows/node.yml@main
with:
range: '>= 10'
range: '>= 10 < 20'
type: minors
command: npm run tests-only

node:
name: 'node 10 - 20'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: true
21 changes: 21 additions & 0 deletions .github/workflows/node-twenties.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Tests: node.js >= 20'

on: [pull_request, push]

permissions:
contents: read

jobs:
tests:
uses: ljharb/actions/.github/workflows/node.yml@main
with:
range: '>= 20'
type: minors
command: npm run tests-only

node:
name: 'node >= 20'
needs: [tests]
runs-on: ubuntu-latest
steps:
- run: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"url": "https://github.com/sponsors/ljharb"
},
"dependencies": {
"is-core-module": "^2.15.1",
"is-core-module": "^2.16.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
Expand Down

0 comments on commit 4cd9ba0

Please sign in to comment.