Skip to content

Commit

Permalink
Add link checking and fix missing image
Browse files Browse the repository at this point in the history
  • Loading branch information
jaygreco committed Nov 19, 2021
1 parent 96b7935 commit 4874306
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/PR_link_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check links during PRs

on:
pull_request:

jobs:
markdown-link-check-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
check-modified-files-only: 'yes'
base-branch: 'main'
15 changes: 15 additions & 0 deletions .github/workflows/cron_link_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check links periodically

on:
schedule:
# Run Friday at 3:15pm
- cron: "15 15 * * FRI"

jobs:
markdown-link-check-cron:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
2 changes: 1 addition & 1 deletion nibble/build_guide_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Seriously, thank you! The NIBBLE has been a passion project of mine over the pas
| --------------------- | -------- | ------------------------------------------------------------------------------------ |
| 1N4148 Diode | 73 | ![](https://github.com/nullbitsco/docs/raw/main/nibble/build_guide_img/image003.jpg) |
| 0.1μF Capacitor | 2 | ![](https://github.com/nullbitsco/docs/raw/main/nibble/build_guide_img/image005.jpg) |
| 330Ω Resistor | 3 | ![]() |
| 330Ω Resistor | 3 | ![](https://www.newark.com/productimages/standard/en_US/4415447.jpg) |
| IC Socket | 2 | ![](https://github.com/nullbitsco/docs/raw/main/nibble/build_guide_img/image007.jpg) |
| IC (74HC138N) | 2 | ![](https://github.com/nullbitsco/docs/raw/main/nibble/build_guide_img/image009.jpg) |
| Reset Switch | 1 | ![](https://github.com/nullbitsco/docs/raw/main/nibble/build_guide_img/image011.jpg) |
Expand Down

0 comments on commit 4874306

Please sign in to comment.