Skip to content

Commit

Permalink
Use npm instead of yarn in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aboks committed Jun 16, 2023
1 parent 29689a1 commit 69322f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
node-version: 18

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install

- name: Run test suite
run: yarn run test
run: npm run test

publish:
needs: build
Expand All @@ -44,7 +44,7 @@ jobs:
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install

- name: Set new version
run: npm version --allow-same-version --no-git-tag-version ${{ github.event.release.tag_name }}
Expand Down

0 comments on commit 69322f7

Please sign in to comment.