Skip to content

add CI workflow, and update tree-sitter #1

add CI workflow, and update tree-sitter

add CI workflow, and update tree-sitter #1

Workflow file for this run

name: Build/test
on:
pull_request:
branches:
- "**"
push:
branches:
- "main"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm install
- run: npm test