Skip to content

Add a warning to instruct users about future requirements for marking Neoj4 nodes with the @node directive. #5007

Add a warning to instruct users about future requirements for marking Neoj4 nodes with the @node directive.

Add a warning to instruct users about future requirements for marking Neoj4 nodes with the @node directive. #5007

Workflow file for this run

name: "Lint Markdown"
on:
pull_request:
branches:
- dev
paths:
- "**/*.md"
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: lts/*
- name: Install markdownlint
run: npm install -g markdownlint-cli
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: filter
with:
list-files: shell
filters: |
markdown:
- added|modified: '*.md'
- uses: xt0rted/markdownlint-problem-matcher@1a5fabfb577370cfdf5af944d418e4be3ea06f27 # v3.0.0
- name: Run markdownlint
run: markdownlint --config ./.markdownlint.json ${{ steps.filter.outputs.markdown_files }}