mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:26:44 +00:00
37 lines
819 B
YAML
37 lines
819 B
YAML
|
name: NocoBase E2E Test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
- 'develop'
|
||
|
paths:
|
||
|
- '.github/workflows/nocobase-build-test.yml'
|
||
|
- 'packages/**'
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- '**'
|
||
|
paths:
|
||
|
- '.github/workflows/nocobase-build-test.yml'
|
||
|
- 'packages/**'
|
||
|
|
||
|
jobs:
|
||
|
e2e-test:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node_version: ['18']
|
||
|
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
|
||
|
- run: yarn build
|
||
|
- run: npx playwright install --with-deps
|
||
|
- run: yarn test:e2e
|
||
|
timeout-minutes: 30
|