Skip to content

Commit c800cb6

Browse files
authored
Merge pull request #11 from makenew/node-18
Node v18
2 parents 3522cd3 + 4738367 commit c800cb6

File tree

7 files changed

+362
-486
lines changed

7 files changed

+362
-486
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG VARIANT="16"
1+
ARG VARIANT="18"
22

33
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
44

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"build": {
44
"dockerfile": "Dockerfile",
55
"args": {
6-
"VARIANT": "16"
6+
"VARIANT": "18"
77
}
88
},
99
"extensions": [

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
node_version:
77
description: The Node.js version.
88
required: false
9-
default: '16'
9+
default: '18'
1010
registry_url:
1111
description: The Node.js package registry URL.
1212
required: false

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
node:
1616
- '14'
1717
- '16'
18+
- '18'
1819
steps:
1920
- name: Checkout
2021
uses: actions/checkout@v3
@@ -32,6 +33,7 @@ jobs:
3233
node:
3334
- '14'
3435
- '16'
36+
- '18'
3537
steps:
3638
- name: Checkout
3739
uses: actions/checkout@v3

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/gallium
1+
lts/hydrogen

0 commit comments

Comments
 (0)