File tree Expand file tree Collapse file tree 7 files changed +20637
-6846
lines changed Expand file tree Collapse file tree 7 files changed +20637
-6846
lines changed Original file line number Diff line number Diff line change 23
23
uses : bahmutov/npm-install@v1
24
24
25
25
- name : Test
26
- run : yarn test --ci --coverage --maxWorkers=2
26
+ run : npm test --ci --coverage --maxWorkers=2
27
27
28
28
- name : Build
29
- run : yarn build
29
+ run : npm run build
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ jobs:
22
22
registry-url : ' https://registry.npmjs.org' # set up .npmrc file to publish to npm
23
23
24
24
- name : Install dependencies
25
- run : yarn install
25
+ run : npm install
26
26
27
27
- name : Build
28
- run : yarn build
28
+ run : npm run build
29
29
30
30
- name : Publish
31
- run : yarn publish
31
+ run : npm publish
32
32
env :
33
33
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
34
34
Original file line number Diff line number Diff line change 7
7
target /
8
8
.vscode /
9
9
.idea /
10
- package-lock.json
10
+ yarn.lock
Original file line number Diff line number Diff line change 3
3
# and commit this file to your remote git repository to share the goodness with others.
4
4
5
5
tasks :
6
- - init : yarn install && yarn run build
7
- command : yarn run test
6
+ - init : npm install && npm run build
7
+ command : npm test
You can’t perform that action at this time.
0 commit comments