Skip to content

Commit

Permalink
fix: install devDeps before release
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Apr 30, 2024
1 parent c92143c commit 0b1fb3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npx npm-install-peers
run: |
npm install
npx npm-install-peers
- name: Run linters
run: npm run lint
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
with:
node-version-file: '.nvmrc'
- name: Install Dependencies
run: npx npm-install-peers
run: |
npm install
npx npm-install-peers
- name: Run linters
run: npm run lint
- name: Semantic Release
Expand Down

0 comments on commit 0b1fb3f

Please sign in to comment.