From 65b8e5985e74144879dd993c950cc808a9802ec6 Mon Sep 17 00:00:00 2001 From: Jessica Petty Date: Sun, 24 Oct 2021 14:49:58 -0700 Subject: [PATCH] Add new Rich Navigation workflow file (#481) --- .github/workflows/richnav.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/richnav.yml diff --git a/.github/workflows/richnav.yml b/.github/workflows/richnav.yml new file mode 100644 index 0000000..c21c216 --- /dev/null +++ b/.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 }} \ No newline at end of file