Skip to content

Commit 73c63de

Browse files
build: fix node version to 16.15.0 (#231)
Co-authored-by: JaeYeopHan <[email protected]>
1 parent e5cb8b0 commit 73c63de

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
- name: Setup Node.js
2121
uses: actions/setup-node@v2
2222
with:
23-
node-version: 16
23+
# do not change this version, because of semantic-release, npm whoami bug
24+
# see with https://github.com/semantic-release/npm/issues/470
25+
node-version: 16.15.0
2426
- name: Install dependencies
2527
run: yarn install --immutable
2628
- name: Check Type

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
16.15.0

examples/react/netlify.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build]
22
base = "/examples/react/"
3-
publish = "dist/"
3+
publish = "./dist"
44
command = "yarn build:static"
55
[build.environment]
66
NETLIFY_USE_YARN = "true"
7-
YARN_VERSION="3.1.1"
7+
YARN_VERSION="3.3.0"

examples/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@
3838
"typescript": "4.5.4"
3939
},
4040
"license": "MIT",
41-
"packageManager": "yarn@3.1.1"
41+
"packageManager": "yarn@3.3.0"
4242
}

0 commit comments

Comments
 (0)