Skip to content

Commit e2c9829

Browse files
committed
Revert "chore: upgrade to node 18"
This reverts commit 79878f7.
1 parent 79878f7 commit e2c9829

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.145.1/containers/typescript-node/.devcontainer/base.Dockerfile
22

3-
ARG VARIANT="18-bullseye"
3+
ARG VARIANT="16-bullseye"
44
FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
55

66
# [Optional] Uncomment this section to install additional OS packages.

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-section-dividers",
33
"build": {
44
"dockerfile": "Dockerfile",
5-
"args": { "VARIANT": "18-bullseye" }
5+
"args": { "VARIANT": "16" }
66
},
77

88
// Add the IDs of extensions you want installed when the container is created.

.github/workflows/cd-npm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Configure node for npmjs.org as registry
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: '18.x'
21+
node-version: '16.x'
2222
registry-url: 'https://registry.npmjs.org'
2323

2424
- name: Install dependencies

.github/workflows/cd-storybook.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Use nodejs
1818
uses: actions/setup-node@v3
1919
with:
20-
node-version: '18.x'
20+
node-version: '16.x'
2121

2222
- name: Install dependencies
2323
run: npm ci

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
node: ['18.x']
11+
node: ['16.x']
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313

1414
steps:

0 commit comments

Comments
 (0)