Adding Python Coding Standards (#297) #570
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: Markdown CI | |
on: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '12' | |
- run: npm install alex | |
- name: Alex.js | |
run: npm run test-alex | |
- name: Markdown lint | |
if: success() || failure() | |
uses: nosborn/[email protected] | |
with: | |
files: . | |
ignore_files: node_modules | |
config_file: "mdlint.json" | |
# - name: Check for 404 links | |
# if: success() || failure() | |
# uses: restqa/[email protected] | |
# with: | |
# path: . | |
# ignore: 'https://cucumber.io,https://docs.data.ukho.gov.uk,https://github.com,https://en.wikipedia.org,https://www.nationalarchives.gov.uk' |