Skip to content

Commit

Permalink
bugfix: oom errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gooseops committed Aug 28, 2024
1 parent 19fb598 commit b74a975
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/vercel-preview-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ on:
- development_2.3
jobs:
Deploy-Preview:
runs-on: ubuntu-latest
runs-on:
labels: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
run: NODE_OPTIONS="--max-old-space-size=6144" vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"engines": {
"npm": ">=7.0.0",
"node": "18"
"node": ">=14.0.0"
},
"prettier": "@dao-dao/config/prettier",
"packageManager": "[email protected]",
Expand Down

0 comments on commit b74a975

Please sign in to comment.