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 9a098d5 commit 3756d8dCopy full SHA for 3756d8d
.github/workflows/node.js.yml
@@ -16,14 +16,14 @@ jobs:
16
17
strategy:
18
matrix:
19
- node-version: [12.x, 14.x]
+ node-version: [14.x]
20
21
steps:
22
- uses: actions/checkout@v2
23
- name: Use Node.js ${{ matrix.node-version }}
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: npm ci
28
- - run: npm test
29
- - run: npm run build --if-present
+ - run: yarn install --frozen-lockfile
+ - run: yarn test
+ - run: yarn build
0 commit comments