mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:46:00 +00:00
8f726979a7
* chore(ci): optimize * fix: bug * fix: bug * chore: update * fix: url
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
name: NocoBase frontEnd test
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
paths:
|
|
- 'packages/**'
|
|
- '**/yarn.lock'
|
|
- '.github/workflows/nocobase-test-frontend.yml'
|
|
- '!packages/core/acl/**'
|
|
- '!packages/core/actions/**'
|
|
- '!packages/core/database/**'
|
|
- '!packages/core/server/**'
|
|
- '!packages/plugins/**/src/server/**'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/nocobase-test-frontend.yml'
|
|
- 'packages/**'
|
|
- '**/yarn.lock'
|
|
- '!packages/core/acl/**'
|
|
- '!packages/core/actions/**'
|
|
- '!packages/core/database/**'
|
|
- '!packages/core/server/**'
|
|
- '!packages/plugins/**/src/server/**'
|
|
|
|
jobs:
|
|
frontend-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 test:client
|
|
timeout-minutes: 30
|