2022-10-28 03:41:48 +00:00
|
|
|
name: NocoBase Test
|
2022-01-08 09:16:11 +00:00
|
|
|
|
2022-09-19 01:23:01 +00:00
|
|
|
on:
|
2022-09-27 14:50:10 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- develop
|
2022-10-28 03:41:48 +00:00
|
|
|
paths:
|
|
|
|
- 'packages/**'
|
|
|
|
# paths-ignore:
|
|
|
|
# - 'docs/**'
|
2022-09-19 01:23:01 +00:00
|
|
|
pull_request:
|
2022-10-28 03:41:48 +00:00
|
|
|
paths:
|
|
|
|
- 'packages/**'
|
|
|
|
# paths-ignore:
|
|
|
|
# - 'docs/**'
|
2022-01-08 09:16:11 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-10-28 03:41:48 +00:00
|
|
|
sqlite-test:
|
2022-01-08 09:16:11 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-10-28 03:41:48 +00:00
|
|
|
node_version: ['16']
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:${{ matrix.node_version }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node_version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node_version }}
|
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install
|
|
|
|
- name: Test with Sqlite
|
|
|
|
run: yarn test
|
|
|
|
env:
|
|
|
|
DB_DIALECT: sqlite
|
|
|
|
DB_STORAGE: /tmp/db.sqlite
|
|
|
|
|
|
|
|
postgres-test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node_version: ['16']
|
2022-01-08 09:16:11 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:${{ matrix.node_version }}
|
|
|
|
services:
|
|
|
|
# Label used to access the service container
|
|
|
|
postgres:
|
|
|
|
# Docker Hub image
|
|
|
|
image: postgres:10
|
|
|
|
# Provide the password for postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: nocobase
|
|
|
|
POSTGRES_PASSWORD: password
|
|
|
|
# Set health checks to wait until postgres has started
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node_version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node_version }}
|
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install
|
|
|
|
- name: Test with postgres
|
2022-05-18 16:40:55 +00:00
|
|
|
run: yarn test
|
2022-01-08 09:16:11 +00:00
|
|
|
env:
|
|
|
|
DB_DIALECT: postgres
|
|
|
|
DB_HOST: postgres
|
|
|
|
DB_PORT: 5432
|
|
|
|
DB_USER: nocobase
|
|
|
|
DB_PASSWORD: password
|
|
|
|
DB_DATABASE: nocobase
|
2022-10-28 03:41:48 +00:00
|
|
|
|
|
|
|
mysql-test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node_version: ['16']
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:${{ matrix.node_version }}
|
|
|
|
services:
|
|
|
|
mysql:
|
|
|
|
image: mysql:8
|
2022-01-08 09:16:11 +00:00
|
|
|
env:
|
2022-10-28 03:41:48 +00:00
|
|
|
MYSQL_ROOT_PASSWORD: password
|
|
|
|
MYSQL_DATABASE: nocobase
|
|
|
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node_version }}
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node_version }}
|
|
|
|
cache: 'yarn'
|
|
|
|
- run: yarn install
|
2022-01-08 09:16:11 +00:00
|
|
|
- name: Test with MySQL
|
2022-05-18 16:40:55 +00:00
|
|
|
run: yarn test
|
2022-01-08 09:16:11 +00:00
|
|
|
env:
|
|
|
|
DB_DIALECT: mysql
|
|
|
|
DB_HOST: mysql
|
|
|
|
DB_PORT: 3306
|
|
|
|
DB_USER: root
|
|
|
|
DB_PASSWORD: password
|
|
|
|
DB_DATABASE: nocobase
|