Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
1name: Broken Link Checker
2
3permissions:
4 contents: read
5
6# runs on prs containing markdown or html changes, as well as every monday at 9 am
7on:
8 pull_request:
9 paths:
10 - "**.md"
11 - "**.html"
12 schedule:
13 - cron: "0 9 * * 1"
14
15jobs:
16 link-checker:
17 runs-on: ubuntu-latest
18 steps:
19 - uses: actions/checkout@v6
20 - name: Install dependencies
21 run: npm ci
22 - name: Build Legal
23 run: npm run license-report:html
24 - uses: lycheeverse/lychee-action@v2.6.1
25 with:
26 fail: true
27 jobSummary: false
28 args: --exclude-path 'node_modules' --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst'