Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
push:
branches: [split_parser]
pull_request:
branches: [split_parser]
workflow_dispatch:

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
test:
name: Test parsers
Expand All @@ -16,7 +21,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up tree-sitter
uses: tree-sitter/setup-action@v2
Expand All @@ -34,8 +39,9 @@ jobs:
ALL_EXTENSIONS: 1

- name: Run tests
uses: tree-sitter/parser-test-action@v2
uses: tree-sitter/parser-test-action@v3
with:
generate: false
test-parser-cmd: node scripts/test.js

- name: Rebuild with default extensions
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,9 @@ name: Publish package
on:
push:
tags: ["*"]
workflow_dispatch:

jobs:
github:
uses: tree-sitter/workflows/.github/workflows/release.yml@main
permissions:
contents: write
id-token: write
npm:
uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main
with:
Expand Down
2 changes: 1 addition & 1 deletion tree-sitter-markdown-inline/src/parser.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tree-sitter-markdown/src/parser.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading