Skip to content

Commit 4765350

Browse files
committed
Use Node.js version 16
Current LTS is `v14` and it appears that the associated `npm` is significantly slower at installing node modules. Accordingly, this commit explicitly opts-in to `v16`. This change can be reverted once `v16` is LTS in October.
1 parent a9b4652 commit 4765350

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/check_licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: 'Install Node.js'
7474
uses: actions/setup-node@v2
7575
with:
76-
node-version: 'lts/*'
76+
node-version: '16' # 'lts/*'
7777
timeout-minutes: 5
7878

7979
# Print debug info:

.github/workflows/markdown_equations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: 'Install Node.js'
6767
uses: actions/setup-node@v2
6868
with:
69-
node-version: 'lts/*'
69+
node-version: '16' # 'lts/*'
7070
timeout-minutes: 5
7171

7272
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

.github/workflows/markdown_tocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: 'Install Node.js'
6767
uses: actions/setup-node@v2
6868
with:
69-
node-version: 'lts/*'
69+
node-version: '16' # 'lts/*'
7070
timeout-minutes: 5
7171

7272
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

.github/workflows/namespace_declarations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: 'Install Node.js'
7070
uses: actions/setup-node@v2
7171
with:
72-
node-version: 'lts/*'
72+
node-version: '16' # 'lts/*'
7373
timeout-minutes: 5
7474

7575
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

.github/workflows/repl_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: 'Install Node.js'
7474
uses: actions/setup-node@v2
7575
with:
76-
node-version: 'lts/*'
76+
node-version: '16' # 'lts/*'
7777
timeout-minutes: 5
7878

7979
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

.github/workflows/standalone_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: 'Install Node.js'
7070
uses: actions/setup-node@v2
7171
with:
72-
node-version: 'lts/*'
72+
node-version: '16' # 'lts/*'
7373
timeout-minutes: 5
7474

7575
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

.github/workflows/standalone_push_changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: 'Install Node.js'
5959
uses: actions/setup-node@v2
6060
with:
61-
node-version: 'lts/*'
61+
node-version: '16' # 'lts/*'
6262
timeout-minutes: 5
6363

6464
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

.github/workflows/standalone_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: 'Install Node.js'
6767
uses: actions/setup-node@v2
6868
with:
69-
node-version: 'lts/*'
69+
node-version: '16' # 'lts/*'
7070
timeout-minutes: 5
7171

7272
# Install dependencies (accounting for possible network failures, etc, when installing node module dependencies):

0 commit comments

Comments
 (0)