Skip to content

Commit b45e129

Browse files
authored
Add rich navigation indexing action (microsoft#45431)
* Add rich navigation indexing action * Remove dbaeumer/richNav from indexed branches * Move lsifrc file to .github folder * Remove dbaeumer/richNav
1 parent 076f22b commit b45e129

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"project": "../../src/tsconfig.json",
3+
"source": "../../package.json",
4+
"package": "../../package.json",
5+
"out": "../../typescript.lsif"
6+
}

.github/workflows/rich-navigation.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

0 commit comments

Comments
 (0)