Skip to content

Check Lint

Check Lint #954

Workflow file for this run

name: Check Lint
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
workflow_dispatch:
push:
branches:
- main
schedule:
# Run every first day at 00:00 AM every month.
- cron: "0 0 * * *"
pull_request:
branches: [main]
paths:
- 'readme.md'
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Awesome_Linter
run: npx awesome-lint
- name: Check_Links
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
retry-after: 10
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: '.github/workflows/markdown.links.config.json'