File tree Expand file tree Collapse file tree 5 files changed +19217
-5980
lines changed Expand file tree Collapse file tree 5 files changed +19217
-5980
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
31
31
uses : actions/setup-node@v4
32
32
with :
33
33
node-version : ${{ matrix.node-version }}
34
- cache : ' yarn '
34
+ cache : ' npm '
35
35
36
36
- name : Install dependencies
37
- run : yarn install --frozen-lockfile --non-interactive
37
+ run : npm ci
38
38
39
39
- name : Run linters
40
- run : yarn lint
40
+ run : npm run lint
41
41
42
42
- name : Run tests
43
- run : yarn test
43
+ run : npm test
Original file line number Diff line number Diff line change 27
27
registry-url : https://registry.npmjs.org
28
28
if : ${{ steps.release.outputs.release_created }}
29
29
- run : |
30
- yarn install --non-interactive
31
- yarn publish --provenance
30
+ npm ci
31
+ npm publish --provenance
32
32
env:
33
33
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
34
34
if: ${{ steps.release.outputs.release_created }}
You can’t perform that action at this time.
0 commit comments