-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Submit Rich Code Navigation GitHub action
- Loading branch information
Warren Buckley
committed
Jul 23, 2020
1 parent
639c7a4
commit 48963f6
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Microsoft Rich Code Navigation | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [ v8/dev ] | ||
|
||
jobs: | ||
RichNavigation: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Run Umbraco Build Script with Powershell | ||
working-directory: 'build' | ||
run: .\build.ps1 | ||
shell: powershell | ||
|
||
- name: Microsoft Rich Code Navigation Indexer | ||
uses: microsoft/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
languages: csharp,typescript |