Skip to content

Commit

Permalink
build,tools: gitHub Actions: use Node.js Fermium
Browse files Browse the repository at this point in the history
PR-URL: #35840
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
aduh95 authored and BethGriggs committed Dec 15, 2020
1 parent 41d997c commit 50552fa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/auto-start-ci.yml
Expand Up @@ -9,6 +9,9 @@ on:
# ./doc/guides/commit-queue.md
- cron: "*/5 * * * *"

env:
NODE_VERSION: 14.x

jobs:
startCI:
if: github.repository == 'nodejs/node'
Expand All @@ -20,7 +23,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '12'
node-version: ${{ env.NODE_VERSION }}
- name: Install node-core-utils
run: npm install -g node-core-utils

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/commit-queue.yml
Expand Up @@ -14,6 +14,9 @@ on:
schedule:
- cron: "*/5 * * * *"

env:
NODE_VERSION: 14.x

jobs:
commitQueue:
if: github.repository == 'nodejs/node'
Expand All @@ -34,7 +37,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '12'
node-version: ${{ env.NODE_VERSION }}
- name: Install node-core-utils
run: npm install -g node-core-utils@latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Expand Up @@ -10,7 +10,7 @@ on:

env:
PYTHON_VERSION: 3.9
NODE_VERSION: 10.x
NODE_VERSION: 14.x

jobs:
lint-addon-docs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misc.yml
Expand Up @@ -9,7 +9,7 @@ on:
- v[0-9]+.x

env:
NODE_VERSION: 12.x
NODE_VERSION: 14.x

jobs:
build-docs:
Expand Down

0 comments on commit 50552fa

Please sign in to comment.