We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020b216 commit 0772883Copy full SHA for 0772883
.github/workflows/continuous-integration.yml
@@ -13,13 +13,15 @@ jobs:
13
build-and-test:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v2
17
- - uses: actions/setup-node@v1
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
18
+ with:
19
+ node-version: '14'
20
- name: Cache Node.js modules
21
uses: actions/cache@v2
22
with:
23
path: "**/node_modules"
24
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- - run: yarn
25
+ - run: yarn
26
- run: yarn build
27
- run: yarn test
0 commit comments