Skip to content

Commit

Permalink
Run link checks every 24 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
lunohodov committed Nov 2, 2023
1 parent a1f26ca commit eb61de3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/main.yml → .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Check Links

on:
push:
Expand All @@ -7,6 +7,8 @@ on:
pull_request:
branches:
- main
schedule:
- cron: '30 3 * * *'

jobs:
link_checker:
Expand All @@ -18,11 +20,3 @@ jobs:
uses: lycheeverse/[email protected]
with:
fail: true

awesome_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: npx awesome-lint
18 changes: 18 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Linting

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
awesome_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: npx awesome-lint

0 comments on commit eb61de3

Please sign in to comment.