Skip to content

Commit

Permalink
Use pnpm instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavoguichard committed Feb 5, 2025
1 parent 79e6f5b commit 4d6e55e
Show file tree
Hide file tree
Showing 3 changed files with 2,690 additions and 7,533 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ jobs:
uses: actions/checkout@v3

- name: 🪡 Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
cache: 'pnpm'

- name: 📦 Manually Install pnpm
run: npm install -g pnpm@10

- name: 📦 Install Dependencies
run: npm install
run: pnpm install --frozen-lockfile

- name: ⚡ Run tests
run: |
npm run test
run: pnpm run test

- name: 🚦 Lint
run: |
npm run lint
run: pnpm run lint

- name: 🧙🏿‍♂️ TSC
run: |
npm run tsc
- name: 🧙🏿TSC
run: pnpm run tsc

- name: 📥 Generate npm package
run: |
npm run build
run: pnpm run build
Loading

0 comments on commit 4d6e55e

Please sign in to comment.