https://github.com/arjunattam/lsif-action
GitHub Action to export LSIF
https://github.com/arjunattam/lsif-action
Last synced: 4 months ago
JSON representation
GitHub Action to export LSIF
- Host: GitHub
- URL: https://github.com/arjunattam/lsif-action
- Owner: arjunattam
- License: mit
- Created: 2019-05-24T16:11:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-24T16:26:19.000Z (about 7 years ago)
- Last Synced: 2025-07-29T22:10:05.586Z (11 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action for LSIF
This action generates [LSIF output](https://github.com/microsoft/language-server-protocol/blob/master/indexFormat/specification.md) for the repo. LSIF can be used to answer language server requests for a workspace, without running the language server itself.
Currently, the GitHub Action only supports TypeScript repos.
To add this to your workflow, use
```
arjun27/lsif-action@master
```
Sample workflow file, triggered on every push
```
workflow "New workflow" {
on = "push"
resolves = ["arjun27/lsif-action@master"]
}
action "arjun27/lsif-action@master" {
uses = "arjun27/lsif-action@master"
}
```