mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-02 06:35:29 +00:00
24 lines
512 B
YAML
24 lines
512 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
|
|
- uses: microsoft/RichCodeNavIndexer@master
|
|
with:
|
|
languages: typescript
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
continue-on-error: true
|