Skip to content

ci: add tree-sitter #40

ci: add tree-sitter

ci: add tree-sitter #40

Workflow file for this run

name: Build & Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
- run: |
python -m ensurepip --upgrade
python -m pip install --upgrade pip setuptools wheel
python -m pip install distutils
- run: npm install
- run: npm test