We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c1aa19 commit 5de8c20Copy full SHA for 5de8c20
.github/workflows/build-bundler.yml
@@ -27,9 +27,13 @@ jobs:
27
build:
28
runs-on: ubuntu-latest
29
permissions:
30
- contents: write # Needed for creating releases
+ contents: write
31
packages: write
32
-
+
33
+ env:
34
+ NODE_ENV: development
35
+ NODE_OPTIONS: "--max-old-space-size=4096"
36
37
steps:
38
- name: Checkout repository
39
uses: actions/checkout@v4
@@ -45,6 +49,9 @@ jobs:
45
49
46
50
- name: Build dependencies
47
51
run: yarn build:deps
52
53
+ - name: Build common, components, and app packages
54
+ run: lerna run build --scope @codesandbox/common --scope @codesandbox/components --scope app
48
55
56
- name: Build Sandpack
57
run: yarn build:sandpack
0 commit comments