We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e35b3e3 + 473ba12 commit bef5279Copy full SHA for bef5279
.github/workflows/lsif.yml
@@ -0,0 +1,17 @@
1
+name: LSIF
2
+on:
3
+ - push
4
+jobs:
5
+ lsif-ts:
6
+ runs-on: ubuntu-latest
7
+ container: sourcegraph/lsif-node
8
+ steps:
9
+ - uses: actions/checkout@v1
10
+ - name: Install build dependencies
11
+ run: apk --no-cache add python g++ make git
12
+ - name: Install dependencies
13
+ run: yarn install
14
+ - name: Generate LSIF data
15
+ run: lsif-tsc -p .
16
+ - name: Upload LSIF data
17
+ run: src lsif upload -github-token=${{ secrets.GITHUB_TOKEN }}
0 commit comments