mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 13:03:42 +01:00
28 lines
624 B
YAML
28 lines
624 B
YAML
name: "Rich Navigation Indexing"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
richnav:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v1
|
|
- name: Install dependencies
|
|
run: yarn --frozen-lockfile
|
|
env:
|
|
CHILD_CONCURRENCY: 1
|
|
- name: Install .NET Core 2.2
|
|
uses: actions/setup-dotnet@v1.5.0
|
|
with:
|
|
dotnet-version: 2.2
|
|
- uses: microsoft/RichCodeNavIndexer@v0.1
|
|
with:
|
|
languages: typescript
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
continue-on-error: true
|