fix: install pnpm

This commit is contained in:
Arihant Bansal
2025-01-05 16:09:00 +05:30
parent 9cb3477831
commit 8af1b22e91
28 changed files with 67 additions and 60 deletions

View File

@@ -23,7 +23,14 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: pnpm-lock.json
- run: pnpm install
- run: pnpm run lint
- run: pnpm run build
# - run: pnpm run test # TODO: add mock env for testing
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm run lint
- name: Run build
run: pnpm run build
# - run: pnpm run test # TODO: add mock env for testing