adding IBEJI_HOME env var for loading the invehicle digital twin config file #257
Workflow file for this run
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: Lint and Check Markdown | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
- '**.md' | |
- '**.markdown' | |
jobs: | |
lint-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- 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: | | |
npm install markdown-link-check | |
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 |