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 1717 uses : actions/setup-node@v3
1818 with :
1919 node-version : ${{ matrix.node-version }}
20- cache : ' yarn '
20+ cache : ' npm '
2121
22- - run : yarn install
23- - run : yarn run lint
24- - run : yarn run test
22+ - run : npm ci
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:
1616 uses : actions/setup-node@v3
1717 with :
1818 node-version : 14
19- cache : ' yarn '
19+ cache : ' npm '
2020 registry-url : ' https://registry.npmjs.org'
2121
22- - name : Yarn Install
23- run : yarn install --network-concurrency 1
22+ - name : NPM Install
23+ run : npm ci
2424
2525 - name : Publish (NPM)
26- run : yarn publish --access public
26+ run : npm publish --access public
2727 env :
2828 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
2929
3232 registry-url : ' https://npm.pkg.github.com'
3333
3434 - name : Publish (GPR)
35- run : yarn publish
35+ run : npm publish
3636 env :
3737 NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments