Skip to content

Add workflow to run test suite #1

Add workflow to run test suite

Add workflow to run test suite #1

Workflow file for this run

name: Tree-sitter tests
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use NodeJS
uses: actions/setup-node@v3
with:
node-version-file: ".node-version"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test