Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: bun --cwd ./core/frontend lint

- name: Bun build
run: NODE_OPTIONS=--max-old-space-size=8192 bun run --cwd ./core/frontend build
run: NODE_OPTIONS=--max-old-space-size=16384 bun run --cwd ./core/frontend build

deploy-docker-images:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN <<-EOF
set -e

bun install --cwd /home/pi/frontend
NODE_OPTIONS=--max-old-space-size=8192 bun run --cwd /home/pi/frontend build
NODE_OPTIONS=--max-old-space-size=16384 bun run --cwd /home/pi/frontend build

EOF

Expand Down
Loading