2023-06-09 01:23:04 +00:00
|
|
|
name: Nocobase Build Test
|
|
|
|
|
2024-02-08 03:35:59 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-06-09 01:23:04 +00:00
|
|
|
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:
|
|
|
|
build-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
|
2023-07-05 10:29:18 +00:00
|
|
|
timeout-minutes: 30
|