Skip to content

Bump tree-sitter to a newer version #81

Bump tree-sitter to a newer version

Bump tree-sitter to a newer version #81

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install npm packages
run: npm install
- name: Run formatter
run: npm run check_format
- name: Run tests
run: npm test