File tree 4 files changed +4920
-2681
lines changed
4 files changed +4920
-2681
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ jobs:
23
23
uses : actions/setup-node@v4
24
24
with :
25
25
node-version : 20
26
- # cache: 'yarn '
26
+ cache : ' npm '
27
27
28
28
- name : Fetch deps
29
- run : yarn --mutex network --frozen-lockfile --network-concurrency 25 --silent --disable-self-update-check
29
+ run : npm ci
30
30
31
31
- name : Build
32
- run : yarn build
32
+ run : npm run build
33
33
34
34
- name : Run tests
35
- run : yarn test
35
+ run : npm run test
36
36
37
37
# - name: Codeclimate
38
38
# if: github.ref == 'refs/heads/main'
@@ -73,13 +73,13 @@ jobs:
73
73
uses : actions/setup-node@v4
74
74
with :
75
75
node-version : ${{ matrix.node-version }}
76
- cache : ' yarn '
76
+ cache : ' npm '
77
77
78
78
- name : Fetch deps
79
- run : yarn --mutex network --frozen-lockfile --network-concurrency 25 --silent --disable-self-update-check
79
+ run : npm ci
80
80
81
81
- name : Build
82
- run : yarn build
82
+ run : npm run build
83
83
84
84
- name : Run tests
85
- run : yarn test
85
+ run : npm run test
You can’t perform that action at this time.
0 commit comments