Skip to content

Update to tree-sitter 0.22 and port external scanner to C #99

Update to tree-sitter 0.22 and port external scanner to C

Update to tree-sitter 0.22 and port external scanner to C #99

Workflow file for this run

name: Build package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
node-version: [18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Lint
run: npm run lint --if-present
- name: Test
run: npm test