-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
github-actions[bot] edited this page Feb 5, 2026
·
2 revisions
- Create .github/workflows folder in your repo
- create a workflow file. ('test.yml`)
- use this action-club workflow inside
steps[].useskey as below
name: markdown-lint
run-name: Linting markdown files
on:
push:
<<: &filters
branches: [main, develop]
paths: ["**.md", "**.mdx"]
pull_request:
<<: *filters #reference syntax
jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint Markdown files
uses: recursivezero/action-club/.github/actions/test-tokenhope it helps.