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 f2f0809 commit 4aaec12
Show file tree
Hide file tree
Showing 2 changed files with 4 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
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
run: npm install

- name: Set new version
run: npm version --allow-same-version --no-git-tag-version ${{ github.event.release.tag_name }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.idea/
/node_modules/
/package-lock.json

0 comments on commit 4aaec12

Please sign in to comment.