Skip to content
This repository was archived by the owner on Dec 6, 2022. It is now read-only.

Commit 11ff9c4

Browse files
committed
Revert "Run workflows with Node.js 14 (#23)"
GitHub JavaScript actions run with Node.js 12. https://docs.github.com/en/actions/creating-actions/creating-a-javascript-action#prerequisites This reverts commit a5edb65.
1 parent a5edb65 commit 11ff9c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v2
22-
- name: Set Node.js 14.x
22+
- name: Set Node.js 12.x
2323
uses: actions/setup-node@v1
2424
with:
25-
node-version: 14.x
25+
node-version: 12.x
2626
- name: npm install
2727
run: npm install
2828
- name: Clear tool cache

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v2
21-
- name: Setup Node.js 14
21+
- name: Setup Node.js 12
2222
uses: actions/setup-node@v1
2323
with:
24-
node-version: 14.x
24+
node-version: 12.x
2525
- name: npm install
2626
run: npm install
2727
- name: Lint

0 commit comments

Comments
 (0)