Skip to content

Commit

Permalink
use npm instead of pnpm
Browse files Browse the repository at this point in the history
pnpm has had several issues with building this project, while npm has continued to work smoothly
  • Loading branch information
SamDelaney authored Dec 11, 2024
1 parent 631a7e0 commit 277cec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18,034 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,15 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'

- name: install packages
run: pnpm install
run: npm install

- name: create build
run: pnpm run build
run: npm run build

- name: Fix permissions
run: |
Expand Down
Loading

0 comments on commit 277cec9

Please sign in to comment.