fixup! Style(ci): Introducing emojis for job names #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π Documentation Review | |
on: | |
push: | |
schedule: | |
- cron: '0 9 * * *' # every day at 9:00 | |
jobs: | |
markdown-link-check: | |
name: π Markdown Link Checking | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-verbose-mode: 'yes' | |
config-file: '.github/markdown-link-check-config.json' | |
continue-on-error: true | |
markdown-lint: | |
name: π Markdown Linting | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
HUSKY: 0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node and Install Dependencies | |
uses: ./.github/actions/setup-install | |
- name: Check File Format | |
run: yarn lint:markdown |