Browse Source

feat(testing): Disabled parrelel nc-gui build with other CI action

pull/4278/head
Muhammed Mustafa 2 years ago
parent
commit
aa7733833c
  1. 2
      .github/workflows/ci-cd.yml
  2. 2
      packages/nc-gui/package.json

2
.github/workflows/ci-cd.yml

@ -117,7 +117,7 @@ jobs:
run: docker-compose -f ./scripts/playwright/scripts/docker-compose-playwright.yml up -d &
- name: run frontend
working-directory: ./packages/nc-gui
run: npm run ci:run &
run: npm run ci:run
- name: Run backend
working-directory: ./packages/nocodb
run: npm run watch:run:playwright > mysql_test_backend.log &

2
packages/nc-gui/package.json

@ -28,7 +28,7 @@
"build:copy": "npm run generate; rm -rf ../nc-lib-gui/lib/dist/; rsync -rvzh ./dist/ ../nc-lib-gui/lib/dist/",
"build:copy:publish": "npm run generate; rm -rf ../nc-lib-gui/lib/dist/; rsync -rvzh ./dist/ ../nc-lib-gui/lib/dist/; npm publish ../nc-lib-gui",
"postinstall": "node scripts/updateNuxtRouting.js",
"ci:run": "export NODE_OPTIONS=\"--max_old_space_size=16384\"; npm install; npm run build; NC_BACKEND_URL=http://localhost:8080 npm run start"
"ci:run": "export NODE_OPTIONS=\"--max_old_space_size=16384\"; npm install; npm run build; NC_BACKEND_URL=http://localhost:8080 npm run start &"
},
"dependencies": {
"@ckpack/vue-color": "^1.2.0",

Loading…
Cancel
Save