Skip to content

Commit e42620f

Browse files
Merge pull request #93 from tomtom-international/feat/byod-data-viz
fixed heap issues
2 parents 3e394d2 + 514b7ec commit e42620f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-mcpb.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
push:
55
branches:
66
- 'main'
7+
pull_request:
8+
branches:
9+
- 'main'
710
release:
811
types: [published]
912

@@ -30,7 +33,7 @@ jobs:
3033
needs: [pre-check]
3134
if: |
3235
always() &&
33-
(github.event_name == 'release' || needs.pre-check.outputs.skip-workflow == 'false')
36+
(github.event_name == 'release' || github.event_name == 'pull_request' || needs.pre-check.outputs.skip-workflow == 'false')
3437
strategy:
3538
fail-fast: false
3639
matrix:
@@ -45,6 +48,8 @@ jobs:
4548
platform: win32
4649
arch: x64
4750
runs-on: ${{ matrix.os }}
51+
env:
52+
NODE_OPTIONS: ${{ matrix.platform == 'darwin' && '--max-old-space-size=8192' || '' }}
4853
steps:
4954
- name: Checkout code
5055
uses: actions/checkout@v4

0 commit comments

Comments
 (0)