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 56bdc01 commit 429d2f3Copy full SHA for 429d2f3
.github/workflows/main.yml
@@ -5,17 +5,15 @@ jobs:
5
name: CI
6
runs-on: ubuntu-latest
7
steps:
8
- - uses: actions/checkout@v2
9
- - name: set node.js 16.x
10
- uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+ - name: set node.js 20.x
+ uses: actions/setup-node@v4
11
with:
12
- node-version: 16.x
13
- - uses: borales/actions-yarn@v4
14
- with:
15
- cmd: install
16
17
18
- cmd: check:all
+ node-version: 20.x
+ - name: Install
+ run: yarn install --immutable
+ - name: Check
+ run: yarn run check:all
19
- name: Code coverage report
20
uses: codecov/codecov-action@v2
21
0 commit comments