build(deps-dev): bump eslint from 9.8.0 to 9.9.0 #300
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"] | |
paths: | |
- .github/** | |
- grammar.js | |
- src/** | |
- test/** | |
- bindings/** | |
- binding.gyp | |
pull_request: | |
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: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: ${{runner.os == 'Linux'}} | |
- uses: tree-sitter/setup-action/cli@v1 | |
- uses: tree-sitter/parser-test-action@v2 | |
with: | |
generate: false # ${{runner.os == 'Linux'}} | |
- name: Parse sample files | |
uses: tree-sitter/parse-action@v4 | |
id: parse-files | |
continue-on-error: true | |
with: | |
files: |- | |
examples/Giraffe/**/*.fs | |
examples/FSharp.Data/**/*.fs | |
examples/FSharp.Compiler/tests/**/*.fs | |
invalid-files: |- | |
examples/FSharp.Compiler/tests/**/E_*.fs | |
examples/FSharp.Compiler/tests/**/neg*.fs | |
- 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 repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Check for scanner changes | |
id: scanner-changes | |
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: Fuzz parser | |
uses: tree-sitter/fuzz-action@v4 | |
if: steps.scanner-changes.outputs.changed == 'true' |