You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
395 B
18 lines
395 B
2 years ago
|
# Build a cron job to create a umi project which use antd and dumi, and then build it.
|
||
|
name: Mock Project Build
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "*/30 * * * *"
|
||
|
|
||
|
jobs:
|
||
|
pr-check-ci:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: Build Project
|
||
|
steps:
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 16
|
||
|
- name: Run Script
|
||
|
run: bash ./scripts/ci-mock-project-build.sh
|