File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : CI
22on :
3- push :
4- branches : master
53 pull_request :
6- branches : " *"
4+ branches :
5+ - " master"
76concurrency :
8- group : ${{ github.workflow }}-${{ github.event. pull_request.number || github.ref }}
7+ group : ${{ github.workflow }}-${{ github.event_name == ' pull_request' && github.head_ref || github.sha }}
98 cancel-in-progress : true
109jobs :
1110 lint :
@@ -27,15 +26,21 @@ jobs:
2726 pnpm i
2827 pnpm run lint:check
2928 unit_test :
30- runs-on : ubuntu-latest
3129 strategy :
3230 fail-fast : false
3331 matrix :
3432 os : [ubuntu-latest]
35- rev : [nightly, stable, v0.10.4]
33+ cc : [gcc]
34+ rev : [nightly, stable]
35+ runs-on : ${{ matrix.os }}
36+ env :
37+ CC : ${{ matrix.cc }}
3638 steps :
3739 - name : Checkout
3840 uses : actions/checkout@v4
41+ - uses : actions/setup-node@v3
42+ - name : Install tree-sitter CLI
43+ run : npm i -g tree-sitter-cli
3944 - name : Install neovim
4045 uses : rhysd/action-setup-vim@v1
4146 with :
You can’t perform that action at this time.
0 commit comments