Skip to content

Commit 8fb1cd0

Browse files
committed
Update the actions to Node 20
1 parent e54af69 commit 8fb1cd0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up node.js
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: "18"
21+
node-version: "20"
2222
cache: "npm"
2323
- run: npm install
2424
- run: npx tsc --noEmit
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up node.js
3232
uses: actions/setup-node@v3
3333
with:
34-
node-version: "18"
34+
node-version: "20"
3535
cache: "npm"
3636
- run: npm install
3737
- run: npx webpack --mode development

.github/workflows/codestyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up node.js
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: "18"
21+
node-version: "20"
2222
cache: "npm"
2323
- run: npm install
2424
- run: npx prettier -w .

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"strict": true,
88
"noImplicitAny": false,
99
"moduleResolution": "node",
10-
"newLine": "lf"
11-
}
10+
"newLine": "lf",
11+
},
1212
}

0 commit comments

Comments
 (0)