Skip to content

Commit bec8deb

Browse files
Merge pull request #129 from step-security/auto-cherry-pick
chore: Cherry-picked changes from upstream
2 parents 51102fc + 28c4880 commit bec8deb

File tree

7 files changed

+10
-4
lines changed

7 files changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version-file: package.json
2020
- run: |
21-
npm install
21+
npm ci
2222
npm run all
2323
- run: |
2424
git diff --exit-code ':!dist/index.js.map' ':!badges/coverage.svg'

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24.4.0

actionlint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
paths:
2+
.github/workflows/**/*.{yml,yaml}:
3+
ignore:
4+
- invalid runner name "node24"

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default [
5353

5454
parserOptions: {
5555
project: ['tsconfig.eslint.json'],
56-
tsconfigRootDir: '.'
56+
tsconfigRootDir: import.meta.dirname
5757
}
5858
},
5959

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"semver": "^7.7.1"
1515
},
1616
"engines": {
17-
"node": "^20 || ^22"
17+
"node": ">=24.0.0"
1818
},
1919
"scripts": {
2020
"bundle": "npm run format:write && npm run package",

tsconfig.base.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"declarationMap": false,
77
"esModuleInterop": true,
88
"forceConsistentCasingInFileNames": true,
9+
"isolatedModules": true,
910
"lib": ["ES2022"],
1011
"module": "NodeNext",
1112
"moduleResolution": "NodeNext",

0 commit comments

Comments
 (0)