Adding client build to server test for component testing.
This commit is contained in:
parent
9ab4623c12
commit
977e0bfefe
|
@ -202,6 +202,9 @@ jobs:
|
||||||
|
|
||||||
- run: yarn --frozen-lockfile
|
- run: yarn --frozen-lockfile
|
||||||
|
|
||||||
|
- name: Build client library - necessary for component tests
|
||||||
|
run: yarn build:client
|
||||||
|
|
||||||
- name: Set up PostgreSQL 16
|
- name: Set up PostgreSQL 16
|
||||||
if: matrix.datasource == 'postgres'
|
if: matrix.datasource == 'postgres'
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -67,6 +67,7 @@
|
||||||
"lint:fix:eslint": "eslint --fix --max-warnings=0 packages",
|
"lint:fix:eslint": "eslint --fix --max-warnings=0 packages",
|
||||||
"lint:fix:prettier": "prettier --write \"packages/**/*.{js,ts,svelte}\" && prettier --write \"examples/**/*.{js,ts,svelte}\"",
|
"lint:fix:prettier": "prettier --write \"packages/**/*.{js,ts,svelte}\" && prettier --write \"examples/**/*.{js,ts,svelte}\"",
|
||||||
"lint:fix": "yarn run lint:fix:eslint && yarn run lint:fix:prettier",
|
"lint:fix": "yarn run lint:fix:eslint && yarn run lint:fix:prettier",
|
||||||
|
"build:client": "lerna run --stream build --scope @budibase/client",
|
||||||
"build:specs": "lerna run --stream specs",
|
"build:specs": "lerna run --stream specs",
|
||||||
"build:docker:airgap": "node hosting/scripts/airgapped/airgappedDockerBuild",
|
"build:docker:airgap": "node hosting/scripts/airgapped/airgappedDockerBuild",
|
||||||
"build:docker:airgap:single": "SINGLE_IMAGE=1 node hosting/scripts/airgapped/airgappedDockerBuild",
|
"build:docker:airgap:single": "SINGLE_IMAGE=1 node hosting/scripts/airgapped/airgappedDockerBuild",
|
||||||
|
|
Loading…
Reference in New Issue