Skip to content

Commit 489350e

Browse files
authored
Require Node 24 (#142)
1 parent 57c8fb6 commit 489350e

File tree

2 files changed

+3
-24
lines changed

2 files changed

+3
-24
lines changed

bin/runTests.sh

Lines changed: 0 additions & 21 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"author": "Google LLC",
66
"license": "Apache-2.0",
77
"engines": {
8-
"node": ">= 20.x",
9-
"npm": ">= 10.x"
8+
"node": ">= 24.x",
9+
"npm": ">= 11.x"
1010
},
1111
"scripts": {
1212
"build": "rm -rf dist/ && ncc build --source-map --no-source-map-register src/index.ts",
1313
"lint": "eslint .",
1414
"format": "eslint . --fix",
1515
"docs": "rm -rf docs/ && typedoc --plugin typedoc-plugin-markdown",
16-
"test": "bash ./bin/runTests.sh"
16+
"test": "node --require ts-node/register --test-reporter spec --test tests/**/*.test.ts"
1717
},
1818
"bin": {
1919
"actions-gen-readme": "./bin/actions-gen-readme.mjs"

0 commit comments

Comments
 (0)