Browse Source

Merge pull request #3911 from nocodb/fix/pr-action-issue

fix(workflow): increase max_old_space_size
pull/3914/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
3e76643a09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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