mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 04:23:32 +01:00
* added rich navigation workflow * update yarn command to install dependencies * Update .github/workflows/rich-navigation.yml Co-authored-by: João Moreno <mail@joaomoreno.com>
20 lines
384 B
YAML
20 lines
384 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 install
|
|
- uses: microsoft/RichCodeNavIndexer@master
|
|
with:
|
|
languages: typescript
|