File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ jobs:
17
17
node-version : 14
18
18
19
19
- name : Install dependencies
20
- run : yarn
20
+ run : npm ci
21
21
22
22
- name : Run unit tests
23
- run : yarn test
23
+ run : npm run test
24
24
25
25
code-quality :
26
26
name : Code quality
@@ -35,10 +35,10 @@ jobs:
35
35
node-version : 14
36
36
37
37
- name : Install dependencies
38
- run : yarn
38
+ run : npm ci
39
39
40
40
- name : Lint
41
- run : yarn lint
41
+ run : npm run lint
42
42
43
43
build :
44
44
name : Build
53
53
node-version : 14
54
54
55
55
- name : Install dependencies
56
- run : yarn --frozen-lockfile
56
+ run : npm ci
57
57
58
58
- name : Build the package
59
- run : yarn build
59
+ run : npm run build
Original file line number Diff line number Diff line change @@ -41,11 +41,11 @@ jobs:
41
41
42
42
- name : Install dependencies
43
43
if : steps.version.outputs.IS_NEW_VERSION == 'true'
44
- run : yarn --frozen-lockfile
44
+ run : npm ci
45
45
46
46
- name : Publish the package in the npm registry
47
47
if : steps.version.outputs.IS_NEW_VERSION == 'true'
48
- run : yarn publish --access public
48
+ run : npm publish --access public
49
49
env :
50
50
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
51
51
69
69
70
70
# - name: Publish the package in the GitHub registry
71
71
# if: steps.version.outputs.IS_NEW_VERSION == 'true'
72
- # run: yarn publish --access public
72
+ # run: npm publish --access public
73
73
# env:
74
74
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments