Browse Source

Add new Rich Navigation workflow file (#481)

main
Jessica Petty 4 years ago
committed by GitHub
parent
commit
65b8e5985e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      .github/workflows/richnav.yml

22
.github/workflows/richnav.yml

@ -0,0 +1,22 @@
name: eShopOnWeb Rich Code Navigation
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Build with dotnet
run: dotnet build ./eShopOnWeb.sln --configuration Release
- uses: microsoft/RichCodeNavIndexer@v0.1
with:
repo-token: ${{ github.token }}
Loading…
Cancel
Save