File tree Expand file tree Collapse file tree 4 files changed +30319
-4637
lines changed Expand file tree Collapse file tree 4 files changed +30319
-4637
lines changed Original file line number Diff line number Diff line change 17
17
uses : actions/setup-node@v3
18
18
with :
19
19
node-version : ${{ matrix.node-version }}
20
- cache : ' yarn '
20
+ cache : ' npm '
21
21
22
- - run : yarn install
23
- - run : yarn run lint
24
- - run : yarn run test
22
+ - run : npm install
23
+ - run : npm run lint
24
+ - run : npm run test
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ jobs:
16
16
uses : actions/setup-node@v3
17
17
with :
18
18
node-version : 14
19
- cache : ' yarn '
19
+ cache : ' npm '
20
20
registry-url : ' https://registry.npmjs.org'
21
21
22
- - name : Yarn Install
23
- run : yarn install --network-concurrency 1
22
+ - name : NPM Install
23
+ run : npm install --network-concurrency 1
24
24
25
25
- name : Publish (NPM)
26
- run : yarn publish --access public
26
+ run : npm publish --access public
27
27
env :
28
28
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
29
29
32
32
registry-url : ' https://npm.pkg.github.com'
33
33
34
34
- name : Publish (GPR)
35
- run : yarn publish
35
+ run : npm publish
36
36
env :
37
37
NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments