Skip to content

Commit

Permalink
ci: revert to npm in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kouts committed Oct 21, 2023
1 parent 81a9921 commit 791b038
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,23 @@ jobs:
node-version: ${{ matrix.node }}
check-latest: true

- name: Setup pnpm 📦
uses: pnpm/action-setup@v2
with:
version: 8.9.2

- name: Install dependencies 📦
run: pnpm install
run: npm install

- name: Install semantic-release extra plugins 📦
run: pnpm install --save-dev @semantic-release/changelog @semantic-release/git
run: npm install --save-dev @semantic-release/changelog @semantic-release/git

- name: Run linter 👀
run: pnpm run lint-fix
run: npm run lint-fix

- name: Typecheck 👀
run: pnpm run typecheck
run: npm run typecheck

- name: Run tests 🧪
run: pnpm run test:unit
run: npm run test:unit

- name: Build
run: pnpm run build
run: npm run build

- name: Release
env:
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

0 comments on commit 791b038

Please sign in to comment.