Skip to content

Commit 8a54669

Browse files
committed
chore(ci): use node 14
1 parent 617a198 commit 8a54669

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

.github/workflows/create_test_patches.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
# - make into an action, parameterize directories to pack, and package names to install
3131
# - name patches w/PR as "semver prerelease" and SHA as "semver build info". Needs patch-package enhancement.
3232

33-
- uses: actions/setup-node@v2-beta
33+
- uses: actions/setup-node@v2
34+
with:
35+
node-version: 14
3436

3537
- name: Get yarn cache directory path
3638
id: yarn-cache-dir-path

.github/workflows/linting.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- uses: actions/checkout@v2
1919
with:
2020
fetch-depth: 1
21-
- uses: actions/setup-node@v2-beta
21+
- uses: actions/setup-node@v2
2222
with:
23-
node-version: 12
23+
node-version: 14
2424
- name: Get yarn cache directory path
2525
id: yarn-cache-dir-path
2626
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -65,9 +65,9 @@ jobs:
6565
- uses: actions/checkout@v2
6666
with:
6767
fetch-depth: 1
68-
- uses: actions/setup-node@v2-beta
68+
- uses: actions/setup-node@v2
6969
with:
70-
node-version: 12
70+
node-version: 14
7171
- name: Get yarn cache directory path
7272
id: yarn-cache-dir-path
7373
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -98,9 +98,9 @@ jobs:
9898
- uses: actions/checkout@v2
9999
with:
100100
fetch-depth: 1
101-
- uses: actions/setup-node@v2-beta
101+
- uses: actions/setup-node@v2
102102
with:
103-
node-version: 12
103+
node-version: 14
104104
- name: Get yarn cache directory path
105105
id: yarn-cache-dir-path
106106
run: echo "::set-output name=dir::$(yarn cache dir)"

.github/workflows/tests_e2e.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ jobs:
3838
with:
3939
fetch-depth: 50
4040

41-
- uses: actions/setup-node@v2-beta
42-
41+
- uses: actions/setup-node@v2
42+
with:
43+
node-version: '14'
4344
- name: Install firebase CLI
4445
uses: nick-invision/retry@v2
4546
with:
@@ -217,7 +218,9 @@ jobs:
217218
with:
218219
fetch-depth: 50
219220

220-
- uses: actions/setup-node@v2-beta
221+
- uses: actions/setup-node@v2
222+
with:
223+
node-version: 14
221224

222225
- uses: maxim-lobanov/setup-xcode@v1
223226
with:

.github/workflows/tests_jest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
- uses: actions/checkout@v2
3131
with:
3232
fetch-depth: 50
33-
- uses: actions/setup-node@v2-beta
33+
- uses: actions/setup-node@v2
3434
with:
35-
node-version: 12
35+
node-version: 14
3636
- name: Get yarn cache directory path
3737
id: yarn-cache-dir-path
3838
run: echo "::set-output name=dir::$(yarn cache dir)"

0 commit comments

Comments
 (0)