fix: consecutive statements #107
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: [main] | |
path: | |
- .github/** | |
- grammar.js | |
- src/** | |
- test/** | |
- bindings/** | |
- binding.gyp | |
pull_request: | |
paths: | |
- .github/** | |
- grammar.js | |
- src/** | |
- test/** | |
- bindings/** | |
- binding.gyp | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test parser | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-14] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up tree-sitter | |
uses: tree-sitter/setup-action/cli@v1 | |
- name: Run parser and binding testts | |
uses: tree-sitter/parser-test-action@v2 | |
with: | |
test-rust: ${{ runner.os == 'Linux' }} | |
- name: Parse sample files | |
uses: tree-sitter/parse-action@v4 | |
id: parse-files | |
with: | |
files: examples/** | |
- name: Upload failures artifact | |
uses: actions/upload-artifact@v4 | |
if: "!cancelled() && steps.parse-files.outcome == 'failure'" | |
with: | |
name: failures-${{ runner.os }} | |
path: ${{ steps.parse-files.outputs.failures }} | |
# fuzz: | |
# name: Fuzz parser | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 2 | |
# - name: Check for scanner changes | |
# id: scanner-check | |
# run: |- | |
# if git diff --quiet HEAD^ -- src/scanner.c; then | |
# printf 'changed=false\n' >> "$GITHUB_OUTPUT" | |
# else | |
# printf 'changed=true\n' >> "$GITHUB_OUTPUT" | |
# fi | |
# - name: Run the fuzzer | |
# uses: tree-sitter/fuzz-action@v4 | |
# if: steps.scanner-check.outputs.changed == 'true' | |
# with: | |
# language: angular | |
# external-scanner: src/scanner.c | |
# time: 60 |