2023-09-27 12:00:17 +00:00
|
|
|
name: NocoBase E2E Test
|
|
|
|
|
2024-02-08 03:35:59 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-09-27 12:00:17 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'develop'
|
|
|
|
paths:
|
2023-12-18 14:41:14 +00:00
|
|
|
- '.github/workflows/nocobase-test-e2e.yml'
|
2023-09-27 12:00:17 +00:00
|
|
|
- 'packages/**'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
paths:
|
2023-12-18 14:41:14 +00:00
|
|
|
- '.github/workflows/nocobase-test-e2e.yml'
|
2023-09-27 12:00:17 +00:00
|
|
|
- 'packages/**'
|
|
|
|
|
|
|
|
jobs:
|
2023-10-27 07:22:17 +00:00
|
|
|
e2e-test-postgres:
|
2023-09-27 12:00:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node_version: ['18']
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:${{ matrix.node_version }}
|
2023-10-27 07:22:17 +00:00
|
|
|
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
|
2023-09-27 12:00:17 +00:00
|
|
|
steps:
|
2024-04-15 04:40:53 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Checkout pro-plugins
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: nocobase/pro-plugins
|
|
|
|
ref: main
|
|
|
|
path: packages/pro-plugins
|
|
|
|
ssh-key: ${{ secrets.SUBMODULE_SSH_KEY }}
|
|
|
|
- name: Set variables
|
|
|
|
run: |
|
|
|
|
APPEND_PRESET_LOCAL_PLUGINS=$(find ./packages/pro-plugins/@nocobase -mindepth 1 -maxdepth 1 -type d -exec basename {} \; | sed 's/^plugin-//' | tr '\n' ',' | sed 's/,$//')
|
|
|
|
echo "var2=$APPEND_PRESET_LOCAL_PLUGINS" >> $GITHUB_OUTPUT
|
|
|
|
id: vars
|
2023-09-27 12:00:17 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node_version }}
|
2023-10-27 07:22:17 +00:00
|
|
|
uses: actions/setup-node@v3
|
2023-09-27 12:00:17 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node_version }}
|
2023-12-18 07:21:57 +00:00
|
|
|
cache: 'yarn'
|
2023-10-27 07:22:17 +00:00
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
|
|
with:
|
2023-12-19 06:38:56 +00:00
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
2023-10-27 07:22:17 +00:00
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
2023-09-27 12:00:17 +00:00
|
|
|
- run: yarn install
|
2023-11-01 04:00:28 +00:00
|
|
|
- name: yarn build
|
|
|
|
run: yarn build
|
|
|
|
env:
|
|
|
|
__E2E__: true
|
2023-12-18 07:21:57 +00:00
|
|
|
- run: npx playwright install chromium --with-deps
|
2023-10-27 07:22:17 +00:00
|
|
|
- name: Test with postgres
|
2024-03-03 15:06:24 +00:00
|
|
|
run: yarn e2e p-test
|
2023-10-27 07:22:17 +00:00
|
|
|
env:
|
2023-11-01 04:00:28 +00:00
|
|
|
__E2E__: true
|
2023-11-16 04:33:56 +00:00
|
|
|
APP_ENV: production
|
2023-10-27 07:22:17 +00:00
|
|
|
LOGGER_LEVEL: error
|
|
|
|
DB_DIALECT: postgres
|
|
|
|
DB_HOST: postgres
|
|
|
|
DB_PORT: 5432
|
|
|
|
DB_USER: nocobase
|
|
|
|
DB_PASSWORD: password
|
|
|
|
DB_DATABASE: nocobase
|
2024-04-15 04:40:53 +00:00
|
|
|
APPEND_PRESET_LOCAL_PLUGINS: ${{ steps.vars.outputs.var2 }}
|
2024-05-09 08:12:34 +00:00
|
|
|
timeout-minutes: 180
|