Skip to content

Fix packaging configuration after tree-sitter update #58

Fix packaging configuration after tree-sitter update

Fix packaging configuration after tree-sitter update #58

Workflow file for this run

name: tests
on:
push:
branches:
- master
paths:
- grammar.js
- src/**
- test/**
- bindings/**
- binding.gyp
- package.json
- yarn.lock
pull_request:
branches:
- master
paths:
- grammar.js
- src/**
- test/**
- bindings/**
- binding.gyp
- package.json
- yarn.lock
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node: [20, 21]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn test