Browse Source

Merge pull request #5115 from nocodb/test/ci-cd-timeout

test: increase ci-cd timeout, docker compose correction
feat/socket-api
Raju Udava 2 years ago committed by GitHub
parent
commit
3b623cd5ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/ci-cd.yml
  2. 3
      tests/playwright/scripts/docker-compose-mysql-playwright.yml

2
.github/workflows/ci-cd.yml

@ -27,7 +27,7 @@ concurrency:
jobs:
unit-tests:
runs-on: ubuntu-20.04
timeout-minutes: 30
timeout-minutes: 40
if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }}
steps:
- name: Setup Node

3
tests/playwright/scripts/docker-compose-mysql-playwright.yml

@ -4,10 +4,11 @@ version: "3.5"
# 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
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: password
volumes:

Loading…
Cancel
Save