Skip to content

fix(#56): Allow attributes with single quotes #141

fix(#56): Allow attributes with single quotes

fix(#56): Allow attributes with single quotes #141

Workflow file for this run

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@v2
- name: Run parser and binding tests
uses: tree-sitter/parser-test-action@v2
with:
test-rust: true
test-node: true
- 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 }}