File tree 2 files changed +41
-0
lines changed
2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "project" : " ../../src/tsconfig.json" ,
3
+ "source" : " ../../package.json" ,
4
+ "package" : " ../../package.json" ,
5
+ "out" : " ../../typescript.lsif"
6
+ }
Original file line number Diff line number Diff line change
1
+ name : " Rich Navigation Indexing"
2
+ on :
3
+ workflow_dispatch :
4
+ push :
5
+ branches :
6
+ - main
7
+ - release-*
8
+ pull_request :
9
+ branches :
10
+ - main
11
+ - release-*
12
+
13
+ jobs :
14
+ richnav :
15
+ runs-on : windows-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ with :
20
+ fetch-depth : 5
21
+
22
+ - uses : actions/setup-node@v2
23
+ with :
24
+ node-version : 14
25
+
26
+ - name : Install dependencies
27
+ run : npm ci
28
+
29
+ - uses : microsoft/RichCodeNavIndexer@v0.1
30
+ with :
31
+ languages : typescript
32
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
33
+ typescriptVersion : 0.6.0-next.18
34
+ configFiles : .github/workflow-resources/.lsifrc.json
35
+ continue-on-error : true
You can’t perform that action at this time.
0 commit comments