We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a447b1 commit 1ef8d0eCopy full SHA for 1ef8d0e
.github/workflows/ci.yml
@@ -11,13 +11,15 @@ on:
11
- test/**
12
- bindings/**
13
- binding.gyp
14
+ - .github/workflows/ci.yml
15
pull_request:
16
paths:
17
- grammar.js
18
- src/**
19
20
21
22
23
24
concurrency:
25
group: ${{github.workflow}}-${{github.ref}}
@@ -47,8 +49,12 @@ jobs:
47
49
uses: threeal/pipx-install-action@v1
48
50
with:
51
packages: vcs2l
- - name: Set up examples
52
+ - name: Set up examples (Linux & MacOS)
53
+ if: runner.os != 'Windows'
54
run: vcs import --shallow < examples.repos
55
+ - name: Set up examples (Windows)
56
+ if: runner.os == 'Windows'
57
+ run: cmd.exe /c "vcs import --shallow < ./examples.repos"
58
- name: Parse examples
59
uses: tree-sitter/parse-action@v4
60
0 commit comments