Skip to content

Commit

Permalink
Merge pull request #109 from moreal/broken-link-checker
Browse files Browse the repository at this point in the history
Broken link checker
  • Loading branch information
moreal authored Nov 5, 2024
2 parents dc75477 + 9f52dca commit 0e5910c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Links

on:
workflow_dispatch:
schedule:
- cron: "00 18 * * *"
pull_request:

jobs:
check-links-in-locals:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check broken links
uses: lycheeverse/lychee-action@v2
with:
args: --method GET --fallback-extensions md --exclude dorahacks.io --exclude-path */forum-trunk */**/*.md

check-links-in-remote:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Check broken links
uses: lycheeverse/lychee-action@v2
with:
args: --method GET --fallback-extensions md --exclude dorahacks.io --exclude-path */forum-trunk https://nine-chronicles.dev/
2 changes: 1 addition & 1 deletion en/event/for-non-developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Once you've followed through to the end, if you feel inspired, we encourage you
## Modding Setup and Goal

Now let’s explain our goal. You'll be setting up your environment to create a website that can display avatar information from Nine Chronicles.
We’ll walk you through the basics, and you can follow the [Avatar Information Dapp Guide](https://modding/guide/avatar-information-dapp-guide) later to build the website step-by-step.
We’ll walk you through the basics, and you can follow the [Avatar Information Dapp Guide](../tutorials/modding/avatar-information-dapp-guide) later to build the website step-by-step.

By the end of this guide, you'll have everything set up and ready to dive into that guide!

Expand Down
2 changes: 1 addition & 1 deletion ko/event/for-non-developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Nine Chronicles Modathon에 관심이 있는 비개발자 여러분, 환영합

## 모딩 설정 및 목표

저희의 목표는 Nine Chronicles 아바타 정보를 표시할 수 있는 웹사이트를 만들기 위한 환경을 구성한 다음 [아바타 정보 Dapp 가이드](https://modding/guide/avatar-information-dapp-guide)를 따라 웹사이트를 만들어볼겁니다.
저희의 목표는 Nine Chronicles 아바타 정보를 표시할 수 있는 웹사이트를 만들기 위한 환경을 구성한 다음 [아바타 정보 Dapp 가이드](../tutorials/modding/avatar-information-dapp-guide)를 따라 웹사이트를 만들어볼겁니다.

튜토리얼이 끝나고 나서 본인의 아이디어를 추가한 새로운 앱을 만들어보세요!

Expand Down

0 comments on commit 0e5910c

Please sign in to comment.