add protogalaxy-poc #31
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: Linter & Links (Fail Fast) | |
on: | |
push: | |
pull_request: | |
jobs: | |
lintNLinkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Markdown lint for README | |
uses: docker://avtodev/markdown-lint:v1 | |
with: | |
config: ./.markdownlint.json | |
args: ./README.md | |
lint-markdown-toc: | |
runs-on: ubuntu-latest | |
name: Lint for Table of Contents | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install markdown-toc | |
- run: ./node_modules/.bin/markdown-toc -i README.md | |
- run: git diff --exit-code |