-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# 5.x 定时巡检,定时任务只能在 master 分支配置 | ||
name: CI_Schedule | ||
|
||
on: | ||
schedule: | ||
# 北京时间 09:00 | ||
- cron: '0 1 * * *' | ||
|
||
jobs: | ||
ci: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: v5.0.x | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 18 | ||
|
||
- name: install | ||
run: | | ||
yarn install | ||
- name: lint | ||
run: | | ||
npm run lint | ||
env: | ||
CI: true | ||
|
||
- name: build | ||
run: | | ||
npm run build | ||
env: | ||
CI: true | ||
|
||
- name: test | ||
run: | | ||
npm run test | ||
env: | ||
CI: true | ||
|
||
# 发布失败通知内部开发群 | ||
- name: CI failure notify | ||
if: ${{ failure() }} | ||
uses: zcong1993/actions-ding@master | ||
with: | ||
dingToken: ${{ secrets.DING_TALK_ACCESS_TOKEN }} | ||
ignoreError: true | ||
body: | | ||
{ | ||
"msgtype": "link", | ||
"link": { | ||
"title": "😳 CI 巡检失败", | ||
"text": "🔗 请点击链接查看具体原因", | ||
"messageUrl": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}", | ||
"picUrl": "https://gw.alipayobjects.com/zos/finxbff/compress-tinypng/ea88c724-38fb-42aa-8055-0e08155368b9.png" | ||
} | ||
} |