Skip to content

Commit 0d3e073

Browse files
committed
ci/cd: npm instead of yarn
1 parent 6c9c658 commit 0d3e073

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
- name: Node commands
1919
uses: actions/setup-node@v3
2020

21-
- run: yarn install
21+
- run: npm install
2222

23-
- run: yarn test
23+
- run: npm test
2424

25-
- run: yarn publish
25+
- run: npm publish
2626
if: steps.get_version.outputs.prerelease == ''
2727
env:
2828
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2929

30-
- run: yarn publish --tag next
30+
- run: npm publish --tag next
3131
if: steps.get_version.outputs.prerelease != ''
3232
env:
3333
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)