mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 14:26:36 +00:00
5650d2a994
* chore(deps): bump @formily/path from 2.3.0 to 2.3.1 Bumps [@formily/path](https://github.com/alibaba/formily) from 2.3.0 to 2.3.1. - [Release notes](https://github.com/alibaba/formily/releases) - [Changelog](https://github.com/alibaba/formily/blob/formily_next/CHANGELOG.md) - [Commits](https://github.com/alibaba/formily/compare/v2.3.0...v2.3.1) --- updated-dependencies: - dependency-name: "@formily/path" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore: run CI --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Zeke Zhang <958414905@qq.com>
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
|
|
- develop
|
|
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
|