Skip to content

Commit 0772883

Browse files
committed
Use node 14 in CI
1 parent 020b216 commit 0772883

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ jobs:
1313
build-and-test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v1
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
18+
with:
19+
node-version: '14'
1820
- name: Cache Node.js modules
1921
uses: actions/cache@v2
2022
with:
2123
path: "**/node_modules"
2224
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
23-
- run: yarn
25+
- run: yarn
2426
- run: yarn build
2527
- run: yarn test

0 commit comments

Comments
 (0)