Skip to content

Commit

Permalink
Migrate npm commands in github actions to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
saschb2b committed Aug 12, 2024
1 parent fd538d8 commit ba418ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
with:
node-version: '20'
- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile
- name: Lint code
run: npm run lint
run: yarn lint
- name: Build library code
run: npm run build
run: yarn build
check-versioning:
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
registry-url: 'https://registry.npmjs.org/'
scope: '@wertarbyte'
- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile
- name: Lint code
run: npm run lint
run: yarn lint
- name: Build library code
run: npm run build
run: yarn build
- name: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit ba418ec

Please sign in to comment.