We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a546a commit 173cd34Copy full SHA for 173cd34
1 file changed
.github/workflows/actions.yml
@@ -10,20 +10,21 @@ jobs:
10
lint:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v2
14
- - uses: actions/setup-node@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
15
with:
16
node-version: '20'
17
- - run: yarn bootstrap --frozen-lockfile
+ - run: yarn install --frozen-lockfile
18
+ - run: yarn prepare
19
- run: yarn lint
20
- run: yarn typescript
21
- run: yarn prettier
22
unit-test:
23
24
25
26
27
28
29
30
- run: yarn test --coverage
0 commit comments