Skip to content

Commit

Permalink
fix: E2BIG error for workflow pnpm install
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeikel committed Jan 8, 2025
1 parent 6872d69 commit da706c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ jobs:
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: |
# Increase max argument size limit
sysctl -w kernel.pid_max=100000
# Install dependencies with increased memory
NODE_OPTIONS="--max-old-space-size=4096" pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
Expand Down

0 comments on commit da706c8

Please sign in to comment.