mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:36:42 +00:00
39ee4b8873
* chore: skip sync localization-management plugin enable status * chore: unSyncPlugins array * chore: remove install at dev * chore: gateway and supervisor * chore: install command * chore: remove app manager * chore: share plugin * chore: wsserver * chore: websocket server * chore: websocket connection with app status * feat: socket server at gateway * chore: loading message * chore: ready status * chore: handle app error * feat: restart app at supervisor * feat: health check endpoint * chore: test * chore: test * chore: test * chore: test * chore: build * chore: test * chore: build * chore: application ready status * chore: error message * chore: handle application error * chore: handle error in load * chore: report error in websocket * chore: ws error * chore: ws error * chore: typo * chore: switch app ready status at install * chore: test * chore: test * chore: test * chore: test * feat: add WebSocket client * chore: start gateway * chore: start command in application * chore: code * chore: pm command * chore: run start after load sub app * feat: application fsm * refactor: server life cycle (#2402) * refactor: server life cycle * fix: test error * fix: test error * fix: test error * fix: app.start * fix: cronjob stop * fix: db.sync before upgrade * fix: pm.get * fix: test error * fix: test error * fix: test error * test: add test cases * fix: remove PluginType * chore: start application after install * chore: fsm * chore: working status * chore: working command * chore: remove swith app ready status * chore: switch status after working done * chore: ws status * chore: gateway error * chore: test * chore: stopping status * chore: test * chore: test * feat: app proxy * chore: application destory * chore: application message changed with status * chore: test * chore: test timeout * test: remove listener add by plugin * test: remove listener add by plugin * chore: test * feat: app maintaining * fix: add AppMaintainingDialog * feat: off * test: gateway http response * test: gateway with errors * chore: unkown error * chore: websocket message * chore: ws message * chore: code * chore: error format * chore: delay app load * feat: improve code * chore: application initializing status * chore: supervisor with app status * chore: command status response * chore: test * chore: ws message * chore: test * fix: command running message * feat: restart * chore: code * chore: status transition * chore: test * fix: improve code * fix: error * fix: restart * fix: command * chore: reset client app tag when app selector changed * chore: error report * fix: application status * fix: build * chore: disable help command dispatch * chore: test * test: multi apps test * fix: improve code * fix: test * fix: test * fix: multi apps single running * fix: improve code * fix: app status * chore: move plugin static file to gateway * feat: static file handler * chore: test * chore: enable plugins in share collection * chore: gateway serve upload files * fix: improve client * chore: ws nginx config * fix: gateway with naonoid * fix: db sync * fix: loading * fix: ping * fix: locale load * fix: yarn start --quickstart * fix: add debug log * chore: application started event * chore: running working message payload * chore: nginx log * chore: nginxconf * chore: working message log * feat: logs * feat: compression * fix: remove koa-send and koa-static * fix: remove -e * fix: remove nginx * fix: remove -e * fix: __appName * chore: delay install sub application * chore: sync plugin status * fix: boot sub app * fix: main app reload * fix: test * fix: app status * test: field.bind block event loop * feat: newrelic * feat: debug log * chore: upgrade * fix(file-manager): test error * fix: default app selector * fix: reload after maintained * chore: boot sub app * chore: application destroy command * chore: destroy command * chore: clean code * chore: package.json * chore: maintaining message * chore: test * fix: collection.sync * feat: add test cases * chore: application * fix: test error * feat: improve codes and add test cases * fix: test error * fix: pm enable and disable * fix: pm.disable * feat: update docs * chore: update dockerfile --------- Co-authored-by: chenos <chenlinxh@gmail.com>
132 lines
4.0 KiB
YAML
132 lines
4.0 KiB
YAML
name: NocoBase Backend Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
paths:
|
|
- 'packages/core/acl/**'
|
|
- 'packages/core/actions/**'
|
|
- 'packages/core/database/**'
|
|
- 'packages/core/server/**'
|
|
- 'packages/plugins/**/src/server/**'
|
|
- '.github/workflows/nocobase-test-backend.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'packages/core/acl/**'
|
|
- 'packages/core/actions/**'
|
|
- 'packages/core/database/**'
|
|
- 'packages/core/server/**'
|
|
- 'packages/plugins/**/src/server/**'
|
|
- '.github/workflows/nocobase-test-backend.yml'
|
|
|
|
jobs:
|
|
sqlite-test:
|
|
strategy:
|
|
matrix:
|
|
node_version: ['18']
|
|
underscored: [true, false]
|
|
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 nocobase install -f && node --max_old_space_size=4096 ./node_modules/.bin/jest --maxWorkers=1 --workerIdleMemoryLimit=3000MB
|
|
env:
|
|
LOGGER_LEVEL: error
|
|
DB_DIALECT: sqlite
|
|
DB_STORAGE: /tmp/db.sqlite
|
|
DB_UNDERSCORED: ${{ matrix.underscored }}
|
|
timeout-minutes: 40
|
|
|
|
postgres-test:
|
|
strategy:
|
|
matrix:
|
|
node_version: ['18']
|
|
underscored: [true, false]
|
|
schema: [public, nocobase]
|
|
collection_schema: [public, user_schema]
|
|
runs-on: ubuntu-latest
|
|
container: node:${{ matrix.node_version }}
|
|
services:
|
|
# Label used to access the service container
|
|
postgres:
|
|
# Docker Hub image
|
|
image: postgres:11
|
|
# 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
|
|
# - run: yarn build
|
|
- name: Test with postgres
|
|
run: yarn nocobase install -f && node --max_old_space_size=4096 ./node_modules/.bin/jest --maxWorkers=1 --workerIdleMemoryLimit=3000MB
|
|
env:
|
|
LOGGER_LEVEL: error
|
|
DB_DIALECT: postgres
|
|
DB_HOST: postgres
|
|
DB_PORT: 5432
|
|
DB_USER: nocobase
|
|
DB_PASSWORD: password
|
|
DB_DATABASE: nocobase
|
|
DB_UNDERSCORED: ${{ matrix.underscored }}
|
|
DB_SCHEMA: ${{ matrix.schema }}
|
|
COLLECTION_MANAGER_SCHEMA: ${{ matrix.collection_schema }}
|
|
timeout-minutes: 40
|
|
|
|
mysql-test:
|
|
strategy:
|
|
matrix:
|
|
node_version: ['18']
|
|
underscored: [true, false]
|
|
runs-on: ubuntu-latest
|
|
container: node:${{ matrix.node_version }}
|
|
services:
|
|
mysql:
|
|
image: mysql:8
|
|
env:
|
|
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
|
|
# - run: yarn build
|
|
- name: Test with MySQL
|
|
run: yarn nocobase install -f && node --max_old_space_size=4096 ./node_modules/.bin/jest --maxWorkers=1 --workerIdleMemoryLimit=3000MB
|
|
env:
|
|
LOGGER_LEVEL: error
|
|
DB_DIALECT: mysql
|
|
DB_HOST: mysql
|
|
DB_PORT: 3306
|
|
DB_USER: root
|
|
DB_PASSWORD: password
|
|
DB_DATABASE: nocobase
|
|
DB_UNDERSCORED: ${{ matrix.underscored }}
|
|
timeout-minutes: 40
|