您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
487 B
19 行
487 B
name: nightly
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 7 * * *' # run at 7 AM UTC == midnight PST
|
|
|
|
jobs:
|
|
markdown-link-check-full:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v1
|
|
- uses: actions/setup-node@v2-beta
|
|
with:
|
|
node-version: '12'
|
|
- run: sudo npm install -g markdown-link-check
|
|
- uses: pre-commit/action@v2.0.0
|
|
with:
|
|
extra_args: --hook-stage manual markdown-link-check-full --all-files
|