mirror of
https://github.com/codecrafters-io/build-your-own-x
synced 2026-07-02 16:59:25 +00:00
📦 NEW: link check workflow
This commit is contained in:
parent
feb9b2ba46
commit
f93791f615
1 changed files with 13 additions and 0 deletions
13
.github/workflows/linkcheck.yml
vendored
Normal file
13
.github/workflows/linkcheck.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name: Link-check
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 1' # every monday
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Run linksafe
|
||||
uses: TechWiz-3/linksafe@main
|
||||
Loading…
Reference in a new issue