build,tools: gitHub Actions: use Node.js Fermium
PR-URL: https://github.com/nodejs/node/pull/35840 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
parent
1da672994a
commit
876d81624d
5
.github/workflows/auto-start-ci.yml
vendored
5
.github/workflows/auto-start-ci.yml
vendored
@ -9,6 +9,9 @@ on:
|
|||||||
# ./doc/guides/commit-queue.md
|
# ./doc/guides/commit-queue.md
|
||||||
- cron: "*/5 * * * *"
|
- cron: "*/5 * * * *"
|
||||||
|
|
||||||
|
env:
|
||||||
|
NODE_VERSION: 14.x
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
startCI:
|
startCI:
|
||||||
if: github.repository == 'nodejs/node'
|
if: github.repository == 'nodejs/node'
|
||||||
@ -20,7 +23,7 @@ jobs:
|
|||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v2-beta
|
uses: actions/setup-node@v2-beta
|
||||||
with:
|
with:
|
||||||
node-version: '12'
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
- name: Install node-core-utils
|
- name: Install node-core-utils
|
||||||
run: npm install -g node-core-utils
|
run: npm install -g node-core-utils
|
||||||
|
|
||||||
|
5
.github/workflows/commit-queue.yml
vendored
5
.github/workflows/commit-queue.yml
vendored
@ -14,6 +14,9 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: "*/5 * * * *"
|
- cron: "*/5 * * * *"
|
||||||
|
|
||||||
|
env:
|
||||||
|
NODE_VERSION: 14.x
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
commitQueue:
|
commitQueue:
|
||||||
if: github.repository == 'nodejs/node'
|
if: github.repository == 'nodejs/node'
|
||||||
@ -34,7 +37,7 @@ jobs:
|
|||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
uses: actions/setup-node@v2-beta
|
uses: actions/setup-node@v2-beta
|
||||||
with:
|
with:
|
||||||
node-version: '12'
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
- name: Install node-core-utils
|
- name: Install node-core-utils
|
||||||
run: npm install -g node-core-utils@latest
|
run: npm install -g node-core-utils@latest
|
||||||
|
|
||||||
|
2
.github/workflows/linters.yml
vendored
2
.github/workflows/linters.yml
vendored
@ -10,7 +10,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
PYTHON_VERSION: 3.9
|
PYTHON_VERSION: 3.9
|
||||||
NODE_VERSION: 10.x
|
NODE_VERSION: 14.x
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint-addon-docs:
|
lint-addon-docs:
|
||||||
|
2
.github/workflows/misc.yml
vendored
2
.github/workflows/misc.yml
vendored
@ -9,7 +9,7 @@ on:
|
|||||||
- v[0-9]+.x
|
- v[0-9]+.x
|
||||||
|
|
||||||
env:
|
env:
|
||||||
NODE_VERSION: 12.x
|
NODE_VERSION: 14.x
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-docs:
|
build-docs:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user