Browse Source

chore(action): increase max_old_space_size for testing

pull/3563/head
Wing-Kam Wong 2 years ago
parent
commit
b214e19eb5
  1. 1
      .github/workflows/release-docker.yml
  2. 1
      .github/workflows/release-npm.yml

1
.github/workflows/release-docker.yml

@ -79,6 +79,7 @@ jobs:
- name: upgrade packages for nightly build or pr build
if: ${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }}
run: |
export NODE_OPTIONS="--max_old_space_size=16384"
targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js
cd packages/nocodb-sdk
npm install && npm run build

1
.github/workflows/release-npm.yml

@ -49,6 +49,7 @@ jobs:
node-version: 16.15.0
registry-url: 'https://registry.npmjs.org'
- run: |
export NODE_OPTIONS="--max_old_space_size=16384"
targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js &&
cd packages/nocodb-sdk &&
npm ci && npm run build && npm publish &&

Loading…
Cancel
Save