Skip to content

Commit b9c4501

Browse files
committed
ci: upgrade to node 16
1 parent 2b2f6ed commit b9c4501

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
- name: Setup Node JS
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 12.x
18+
node-version: 16.x
19+
cache: yarn
20+
1921
- run: yarn install --ignore-engines
2022
- run: yarn lint:nofix
2123
- run: yarn test

.github/workflows/docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
- name: Setup Node JS
2020
uses: actions/setup-node@v1
2121
with:
22-
node-version: 12.x
22+
node-version: 16.x
23+
cache: yarn
24+
2325
- name: Build Docs 📚
2426
run: |
2527
# un-ignore bundle.js

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Setup Node JS
14-
uses: actions/setup-node@v1
14+
uses: actions/setup-node@v2
1515
with:
16-
node-version: 12.x
16+
node-version: 16.x
17+
cache: yarn
1718
- run: yarn install --ignore-engines
1819
- run: yarn lint:nofix
1920
- run: yarn test

0 commit comments

Comments
 (0)