Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigopavezi committed Dec 14, 2024
1 parent e2dc21e commit 4e7316b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,24 @@ jobs:
node-version: '22'
cache: 'npm'

- name: System information
run: |
free -h
df -h
node --version
npm --version
- name: Install dependencies
run: npm ci
run: |
npm cache clean --force
npm ci --prefer-offline --no-audit
- name: Build
run: npm run build
env:
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID }}
NODE_OPTIONS: "--max_old_space_size=4096"
NODE_OPTIONS: "--max_old_space_size=6144"
NEXT_TELEMETRY_DISABLED: "1"
NPM_CONFIG_PRODUCTION: "false"
NODE_ENV: "production"
CI: "true"

0 comments on commit 4e7316b

Please sign in to comment.