Skip to content

Commit

Permalink
Update to pnpm (#41)
Browse files Browse the repository at this point in the history
* Update to pnpm

* Preserve symlinks to prevent ts error

* Update package.json to use pnpm over npm

* Attempt to fix TS

* Attempt to fix TS

* Attempt to fix TS
  • Loading branch information
mikewesthad authored Jan 29, 2025
1 parent 56f0a84 commit 34d0657
Show file tree
Hide file tree
Showing 5 changed files with 4,321 additions and 6,546 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,19 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]

steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run test
cache: "pnpm"
- run: pnpm install
- run: pnpm run test
Loading

0 comments on commit 34d0657

Please sign in to comment.