Skip to content

Commit 9f74fb2

Browse files
committed
add continuous link linting job
1 parent 667a8c7 commit 9f74fb2

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Continuous Link Linting
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
7+
jobs:
8+
lint-links:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- uses: ./.github/actions/setup
16+
17+
# we intentionally do not restore cache here
18+
- name: Lint links
19+
run: npm run lint:links

0 commit comments

Comments
 (0)