Skip to content

Commit 6780d7f

Browse files
committed
ci: bump Node to [22, 24]
1 parent c0adb00 commit 6780d7f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
permissions: {}
9090
strategy:
9191
matrix:
92-
node-version: [20, 22]
92+
node-version: [22, 24]
9393
os: [ubuntu-24.04, windows-2025]
9494
runs-on: ${{ matrix.os }}
9595
steps:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"clear-cache": "nx clear-cache",
2727
"format": "nx run-many --target format",
2828
"lint": "nx run-many --target lint",
29-
"new-package": "node --experimental-strip-types --no-warnings scripts/new-package.ts",
29+
"new-package": "node scripts/new-package.ts",
3030
"publish:changesets": "changeset publish",
3131
"rnx-align-deps": "yarn workspace @rnx-kit/align-deps bundle && scripts/rnx-align-deps.js",
3232
"show-affected": "nx show projects --affected",

packages/align-deps/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"format": "rnx-kit-scripts format",
3737
"lint": "rnx-kit-scripts lint",
3838
"test": "rnx-kit-scripts test",
39-
"update-preset": "node --experimental-strip-types --no-warnings scripts/update-preset.ts",
40-
"update-profile": "node --experimental-strip-types --no-warnings scripts/update-profile.ts",
39+
"update-preset": "node scripts/update-preset.ts",
40+
"update-profile": "node scripts/update-profile.ts",
4141
"update-readme": "node scripts/update-readme.mjs"
4242
},
4343
"devDependencies": {

packages/align-deps/scripts/update-preset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env -S node --experimental-strip-types --no-warnings
1+
#!/usr/bin/env -S node
22

33
import { info } from "@rnx-kit/console";
44
import * as fs from "node:fs";

packages/align-deps/scripts/update-profile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env -S node --experimental-strip-types --no-warnings
1+
#!/usr/bin/env -S node
22

33
import { error, info } from "@rnx-kit/console";
44
import { untar } from "@rnx-kit/tools-shell";

0 commit comments

Comments
 (0)