Skip to content

Commit 59db9b9

Browse files
authored
Merge pull request #27 from jg-rp/node-versions
Update CI node versions
2 parents 1226b8a + 5b9605f commit 59db9b9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node-version: [18.x, 19.x]
8+
node-version: [20.x, 22.x, 23.x]
99
steps:
1010
- uses: actions/checkout@v3
1111
with:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
- name: Use Node.js
1111
uses: actions/setup-node@v3
1212
with:
13-
node-version: "18.x"
13+
node-version: "22.x"
1414
- run: npm install --include=dev
1515
- run: npm run lint

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node-version: [18.x, 19.x, 20.x]
8+
node-version: [18.x, 20.x, 22.x, 23.x]
99
steps:
1010
- uses: actions/checkout@v3
1111
with:

rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import resolve from "@rollup/plugin-node-resolve";
33
import { babel } from "@rollup/plugin-babel";
44
import replace from "@rollup/plugin-replace";
55
import terser from "@rollup/plugin-terser";
6-
import pkg from "./package.json" assert { type: "json" };
6+
import pkg from "./package.json" with { type: "json" };
77

88
const extensions = [".js", ".jsx", ".ts", ".tsx"];
99
const name = "json_p3";

0 commit comments

Comments
 (0)