mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:36:42 +00:00
0a0d09119b
* Create node.js.yml * fix: npm install command * fix: try to fix github action fail by use same react version * fix: try to fix github action fail by use same react version * fix: try to fix github action fail by use same react version * fix: try to fix github action fail by use same react version * fix: try to fix github action fail by build dependencies * fix: try to fix ci fail by types resolution * fix: try to fix ci fail by types resolution * fix: try to fix ci fail by types resolution * fix: try to fix ci fail by types resolution * fix: try to fix ci fail by types resolution * fix: try to fix ci fail by set env * fix: try to fix ci fail by pg version * fix: try to fix ci fail by fix types * fix(test): Type '""' is not assignable to type 'IndexType'. * fix(test): Type '""' is not assignable to type 'IndexType' Co-authored-by: Junyi <mytharcher@users.noreply.github.com> Co-authored-by: mytharcher <mytharcher@gmail.com>
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Node.js CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
node_version: ['12']
|
|
db_dialect: ['postgres']
|
|
pg_version: ['12']
|
|
|
|
runs-on: ubuntu-latest
|
|
container: node:${{ matrix.node_version }}
|
|
services:
|
|
# Label used to access the service container
|
|
postgres:
|
|
# Docker Hub image
|
|
image: postgres:${{ matrix.pg_version }}
|
|
# 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
|
|
- run: npm i
|
|
- run: npm run bootstrap
|
|
- run: npm run build
|
|
- name: Test
|
|
run: npm test
|
|
env:
|
|
DB_DIALECT: ${{ matrix.db_dialect }}
|
|
DB_HOST: ${{ matrix.db_dialect }}
|
|
DB_PORT: 5432
|
|
DB_USER: nocobase
|
|
DB_PASSWORD: password
|
|
DB_DATABASE: nocobase
|