We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667a8c7 commit 9f74fb2Copy full SHA for 9f74fb2
1 file changed
.github/workflows/continuous-link-linting.yml
@@ -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