-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 927 Bytes
/
ci.yml
File metadata and controls
38 lines (35 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: CI
on:
push:
branches: [main]
paths:
- .github/workflows/**
- grammar.js
- src/**
- bindings/**
- binding.gyp
pull_request:
paths:
- grammar.js
- src/**
- bindings/**
- binding.gyp
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up tree-sitter
uses: tree-sitter/setup-action/cli@v2
- uses: actions/checkout@v4
- uses: tree-sitter/parser-test-action@v3
with:
generate: true
test-rust: true
test-node: true
node-version: 20