forked from jumattos/tester-game
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (26 loc) · 897 Bytes
/
richnav-typescript.yml
File metadata and controls
35 lines (26 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
### This template is meant to be used by a .NET Core repository running RichNav
### Please fill anything marked above with a "# **** #" comment with the value appropriate for your repository
name: Rich Code Navigation (Node JS)
on:
pull_request:
push:
branches: [ master ]
jobs:
richnav:
runs-on: windows-latest
# **** If necessary, use the Node version for your repository. Note: must be greater than 10.x **** #
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
working-directory: typescript
- uses: microsoft/RichCodeNavIndexer@v0.1
with:
languages: typescript
repo-token: ${{ secrets.GITHUB_TOKEN }}