Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit efd3156

Browse files
committed
Update github actions
1 parent d33da4d commit efd3156

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-and-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212
- run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
13-
- name: Setup node 12
13+
- name: Setup node 14
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 12.x
16+
node-version: 14.x
1717
- run: yarn install --frozen-lockfile --check-files
1818
- uses: actions/cache@v1
1919
id: cache-deps
@@ -30,10 +30,10 @@ jobs:
3030
with:
3131
path: '.'
3232
key: ${{ github.sha }}-deps
33-
- name: Setup node 12
33+
- name: Setup node 14
3434
uses: actions/setup-node@v1
3535
with:
36-
node-version: 12.x
36+
node-version: 14.x
3737
- run: yarn lint
3838
unit-test:
3939
runs-on: ubuntu-latest
@@ -44,17 +44,17 @@ jobs:
4444
with:
4545
path: '.'
4646
key: ${{ github.sha }}-deps
47-
- name: Setup node 12
47+
- name: Setup node 14
4848
uses: actions/setup-node@v1
4949
with:
50-
node-version: 12.x
50+
node-version: 14.x
5151
- run: yarn test
5252
build:
5353
runs-on: ubuntu-latest
5454
needs: install-dependencies
5555
strategy:
5656
matrix:
57-
node-version: [12.x]
57+
node-version: [14.x]
5858
steps:
5959
- uses: actions/cache@v1
6060
id: restore-deps

0 commit comments

Comments
 (0)