File tree Expand file tree Collapse file tree 1 file changed +4
-29
lines changed Expand file tree Collapse file tree 1 file changed +4
-29
lines changed Original file line number Diff line number Diff line change 1
-
2
1
name : CI
3
2
4
3
on : [push, pull_request]
@@ -17,34 +16,10 @@ jobs:
17
16
with :
18
17
node-version : ${{matrix.node}}
19
18
- name : install dependencies
20
- run : npm ci
19
+ run : yarn install
21
20
- name : lint code
22
- run : npm run lint
21
+ run : yarn lint
23
22
- name : build project
24
- run : npm run build
23
+ run : yarn build
25
24
- name : run tests
26
- run : npm run test
27
- - name : coverage
28
- uses : codecov/codecov-action@v4
29
- if : github.actor != 'dependabot[bot]'
30
- with :
31
- fail_ci_if_error : true
32
- verbose : false
33
- token : ${{ secrets.CODECOV_TOKEN }}
34
- env :
35
- CI : true
36
-
37
- release-preview :
38
- runs-on : ubuntu-latest
39
- needs : test
40
- steps :
41
- - uses : actions/checkout@v4
42
- - uses : actions/setup-node@v4
43
- with :
44
- node-version : " 22.0.0"
45
- - name : install dependencies
46
- run : npm ci
47
- - name : build project
48
- run : npm run build
49
- - name : release preview with pkr-pr-new
50
- run : npx pkg-pr-new publish
25
+ run : yarn test
You can’t perform that action at this time.
0 commit comments