Skip to content

SECURITY.md updated to Eclipse's policy, rust toolchain update #160

SECURITY.md updated to Eclipse's policy, rust toolchain update

SECURITY.md updated to Eclipse's policy, rust toolchain update #160

Workflow file for this run

name: Lint and Check Markdown
on:
pull_request:
branches:
- main
paths:
- 'docs/**'
- '**.md'
- '**.markdown'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
lint-markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: |
npm install markdownlint-cli
- run: |
node_modules/.bin/markdownlint -c .markdownlint.jsonc -i node_modules/ .
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
# markdown-link-check had a regression introduced in version 3.12.0. Keep it at 3.11.2 until that is resolved
# Issue: https://github.com/tcort/markdown-link-check/issues/304
npm install [email protected]
find . -type d \( -name node_modules -o -name .github \) -prune -o -type f -name '*.md' -print0 | xargs -0 -n1 node_modules/.bin/markdown-link-check --config .markdownlinkcheck.jsonc --quiet