fix: allow whitespace after closing code block fence #40
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: CI | |
on: | |
push: | |
branches: [split_parser] | |
paths: | |
- "scripts/*" | |
- "common/*" | |
- "*/grammar.js" | |
- "*/src/**" | |
- "*/test/**" | |
- "bindings/**" | |
- "binding.gyp" | |
pull_request: | |
paths: | |
- "scripts/*" | |
- "common/*" | |
- "*/grammar.js" | |
- "*/src/**" | |
- "*/test/**" | |
- "bindings/**" | |
- "binding.gyp" | |
jobs: | |
test: | |
name: Test parsers | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-14] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install tree-sitter CLI | |
uses: tree-sitter/setup-action/cli@v1 | |
- name: Build with all extensions | |
run: npm run build | |
env: | |
ALL_EXTENSIONS: 1 | |
- name: Run tests | |
uses: tree-sitter/parser-test-action@v2 | |
with: | |
test-rust: true | |
test-parser-cmd: npm test | |
- name: Rebuild with default extensions | |
run: npm run build | |
- name: Verify grammar consistency | |
run: git diff --exit-code -- */src/grammar.json | |
fuzz: | |
name: Fuzz parsers | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
parser: [tree-sitter-markdown, tree-sitter-markdown-inline] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Check for scanner changes | |
id: scanner-changes | |
run: |- | |
if git diff --quiet HEAD^ -- '${{matrix.parser}}/src/scanner.c'; then | |
printf 'changed=false\n' >> "$GITHUB_OUTPUT" | |
else | |
printf 'changed=true\n' >> "$GITHUB_OUTPUT" | |
fi | |
- name: Fuzz ${{matrix.parser}} parser | |
uses: tree-sitter/fuzz-action@v4 | |
if: steps.scanner-changes.outputs.changed == 'true' | |
with: | |
directory: ${{matrix.parser}} |