Skip to content

Commit 9cb4b0c

Browse files
committed
ci: replace the yarn usage with npm directly
1 parent df1515c commit 9cb4b0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish_npm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
- uses: actions/setup-node@v3
1313
with:
1414
node-version: 16.x
15-
cache: 'yarn'
16-
- run: yarn --frozen-lockfile
17-
- run: yarn run test
15+
cache: 'npm'
16+
- run: npm
17+
- run: npm test
1818

1919
publish:
2020
needs: test
@@ -28,7 +28,7 @@ jobs:
2828
node-version: '16.x'
2929
registry-url: 'https://registry.npmjs.org'
3030
scope: '@t13'
31-
- run: yarn --frozen-lockfile
31+
- run: npm
3232
- name: Publish package on NPM 📦
3333
run: npm publish
3434
env:

0 commit comments

Comments
 (0)