File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change 1
- # This is a basic workflow to help you get started with Actions
2
-
3
1
name : Run tree-sitter tests
4
2
5
- # Controls when the workflow will run
6
3
on :
7
- # Triggers the workflow on push or pull request events but only for the master branch
8
4
push :
9
5
branches : [ master ]
10
6
pull_request :
11
7
branches : [ master ]
12
8
13
- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
9
jobs :
15
- # This workflow contains a single job called "build"
16
10
test :
17
11
name : Tree-sitter tests
18
- # The type of runner that the job will run on
19
12
runs-on : ubuntu-latest
20
-
21
- # Steps represent a sequence of tasks that will be executed as part of the job
22
13
steps :
23
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v3
25
15
26
- - uses : actions/setup-node@v2.4.0
16
+ - uses : actions/setup-node@v3
27
17
- name : Install Dependencies
28
18
run : npm install
29
19
You can’t perform that action at this time.
0 commit comments