Small tune ups to formatting of JSONs and use .jsonld not .prov #3803
This file contains hidden or 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: Check Markdown style | |
| on: [push, pull_request] | |
| jobs: | |
| markdown-style: | |
| runs-on : ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 14 | |
| - name: Install dependencies | |
| run: npm install `cat npm-requirements.txt` | |
| - name: Run style checks | |
| run: npx remark src/*.md src/*/*.md --frail --rc-path .remarkrc |