mirror of https://github.com/nocodb/nocodb
Browse Source
feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Added playwright to CI feat(testing): Reverted changes to test CI for playwrightpull/3848/head
Muhammed Mustafa
2 years ago
committed by
Muhammed Mustafa
5 changed files with 1562 additions and 1374 deletions
@ -0,0 +1,17 @@ |
|||||||
|
version: "2.1" |
||||||
|
|
||||||
|
services: |
||||||
|
pg96: |
||||||
|
image: postgres:9.6 |
||||||
|
restart: always |
||||||
|
environment: |
||||||
|
POSTGRES_PASSWORD: password |
||||||
|
ports: |
||||||
|
- 5432:5432 |
||||||
|
volumes: |
||||||
|
- ../../packages/nocodb/tests/pg-cy-quick:/docker-entrypoint-initdb.d |
||||||
|
healthcheck: |
||||||
|
test: ["CMD-SHELL", "pg_isready -U postgres"] |
||||||
|
interval: 10s |
||||||
|
timeout: 5s |
||||||
|
retries: 5 |
@ -0,0 +1,17 @@ |
|||||||
|
version: "2.1" |
||||||
|
|
||||||
|
services: |
||||||
|
pg96: |
||||||
|
image: postgres:9.6 |
||||||
|
restart: always |
||||||
|
environment: |
||||||
|
POSTGRES_PASSWORD: password |
||||||
|
ports: |
||||||
|
- 5432:5432 |
||||||
|
volumes: |
||||||
|
- ../../packages/nocodb/tests/pg-sakila-db:/docker-entrypoint-initdb.d |
||||||
|
healthcheck: |
||||||
|
test: ["CMD-SHELL", "pg_isready -U postgres"] |
||||||
|
interval: 10s |
||||||
|
timeout: 5s |
||||||
|
retries: 5 |
@ -0,0 +1,67 @@ |
|||||||
|
version: "3.5" |
||||||
|
|
||||||
|
# https://github.com/docker-library/mysql/issues/149 |
||||||
|
# disabling default sql-mode set to only_full_group_by |
||||||
|
services: |
||||||
|
xc-mysql-sakila-db: |
||||||
|
network_mode: host |
||||||
|
image: mysql:8.0 |
||||||
|
command: mysqld --sql_mode="" |
||||||
|
restart: always |
||||||
|
environment: |
||||||
|
MYSQL_ROOT_PASSWORD: password |
||||||
|
volumes: |
||||||
|
- ../../../packages/nocodb/tests/mysql-sakila-db:/docker-entrypoint-initdb.d |
||||||
|
|
||||||
|
# xc-cypress-nocodb: |
||||||
|
# network_mode: host |
||||||
|
# image: node:14-alpine |
||||||
|
# environment: |
||||||
|
# - EE=true |
||||||
|
# volumes: |
||||||
|
# - ./packages/nocodb:/home/app |
||||||
|
# command: |
||||||
|
# - /bin/sh |
||||||
|
# - -c |
||||||
|
# - | |
||||||
|
# echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" |
||||||
|
# # cp -r /home/app1/ /home/app/ |
||||||
|
# rm /home/app/package-lock.json |
||||||
|
# rm /home/app/noco.db |
||||||
|
# cd /home/app/ && npm i && EE=true npm run run |
||||||
|
# # cd /home/app/ && npm i && EE=true npm run watch:run |
||||||
|
# xc-cypress-nc-gui: |
||||||
|
# network_mode: host |
||||||
|
# image: node:14-alpine |
||||||
|
# environment: |
||||||
|
# - HOST=0.0.0.0 |
||||||
|
# - PORT=3000 |
||||||
|
# - EE=true |
||||||
|
# volumes: |
||||||
|
# - ./packages/nc-gui:/home/app |
||||||
|
# - ./packages/nc-lib-gui:/home/nc-lib-gui |
||||||
|
# command: |
||||||
|
# - /bin/sh |
||||||
|
# - -c |
||||||
|
# - | |
||||||
|
# echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" |
||||||
|
# apk --update --no-cache add git |
||||||
|
# # cp -r /home/app1/ /home/app/ |
||||||
|
# rm /home/app/package-lock.json |
||||||
|
# cd /home/app/ && npm i && npm run dev |
||||||
|
# # cd /home/app/ && npm i && NODE_ENV=development npm run build && npm start |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue