Skip to content

Commit

Permalink
fix: use node-v18.17 to generate all artifacts (#1689)
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam authored Oct 9, 2023
1 parent fa6fbaa commit 282e23d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/insider-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '18.17'

- name: Clone VSCode repo
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/insider-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '18.17'

- name: Install Yarn
run: npm install -g yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '18.17'

- name: Clone VSCode repo
run: . get_repo.sh
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/stable-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,10 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '18.17'

- name: Install Yarn
run: npm install -g yarn@latest

- name: Install lastest NPM
run: npm install -g npm@latest
run: npm install -g yarn

- name: Setup Python 3
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions prepare_vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if [[ "${OS_NAME}" == "linux" ]]; then
fi

if [[ "${OS_NAME}" == "osx" ]]; then
CHILD_CONCURRENCY=1 yarn --frozen-lockfile --network-timeout 180000
CHILD_CONCURRENCY=1 yarn --network-timeout 180000

yarn postinstall
else
Expand Down Expand Up @@ -91,7 +91,7 @@ else
export npm_config_arm_version=7
fi

CHILD_CONCURRENCY=1 yarn --frozen-lockfile --check-files --network-timeout 180000
CHILD_CONCURRENCY=1 yarn --check-files --network-timeout 180000
fi

setpath() {
Expand Down

0 comments on commit 282e23d

Please sign in to comment.