Remove integration test in ci. The CI runs currently run against the deprecated release env and don't run against the live code
This commit is contained in:
parent
2e80bab7ad
commit
457262b0b4
|
@ -77,28 +77,28 @@ jobs:
|
||||||
- run: yarn bootstrap
|
- run: yarn bootstrap
|
||||||
- run: yarn test:pro
|
- run: yarn test:pro
|
||||||
|
|
||||||
integration-test:
|
# integration-test:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
services:
|
# services:
|
||||||
couchdb:
|
# couchdb:
|
||||||
image: ibmcom/couchdb3
|
# image: ibmcom/couchdb3
|
||||||
env:
|
# env:
|
||||||
COUCHDB_PASSWORD: budibase
|
# COUCHDB_PASSWORD: budibase
|
||||||
COUCHDB_USER: budibase
|
# COUCHDB_USER: budibase
|
||||||
ports:
|
# ports:
|
||||||
- 4567:5984
|
# - 4567:5984
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v2
|
# - uses: actions/checkout@v2
|
||||||
- name: Use Node.js 14.x
|
# - name: Use Node.js 14.x
|
||||||
uses: actions/setup-node@v1
|
# uses: actions/setup-node@v1
|
||||||
with:
|
# with:
|
||||||
node-version: 14.x
|
# node-version: 14.x
|
||||||
- name: Install Pro
|
# - name: Install Pro
|
||||||
run: yarn install:pro $BRANCH $BASE_BRANCH
|
# run: yarn install:pro $BRANCH $BASE_BRANCH
|
||||||
- run: yarn
|
# - run: yarn
|
||||||
- run: yarn bootstrap
|
# - run: yarn bootstrap
|
||||||
- run: yarn build
|
# - run: yarn build
|
||||||
- run: |
|
# - run: |
|
||||||
cd qa-core
|
# cd qa-core
|
||||||
yarn
|
# yarn
|
||||||
yarn api:test:ci
|
# yarn api:test:ci
|
||||||
|
|
Loading…
Reference in New Issue