Skip to content

Commit e1cf4fb

Browse files
committed
chore: pin Node v14
1 parent ceccd47 commit e1cf4fb

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/cd.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
with:
2121
fetch-depth: 0 # Fetch all branches
2222

23+
- name: Set up Node.js
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: '14'
27+
2328
- name: Install modules
2429
run: npm install --no-audit
2530

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
- name: Check out repository
2222
uses: actions/checkout@v2
2323

24+
- name: Set up Node.js
25+
uses: actions/setup-node@v2
26+
with:
27+
node-version: '14'
28+
2429
- name: Install modules
2530
run: npm install --no-audit
2631

0 commit comments

Comments
 (0)