📝 put readme in docs website #130
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
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.101 | |
- name: Yarn install | |
run: yarn install | |
working-directory: ./Source/features-ui | |
- name: Yarn build (features-ui) | |
run: yarn build | |
working-directory: ./Source/features-ui | |
- name: .NET Build (FeatureManagement.UI) | |
run: dotnet build --configuration Release | |
- name: .NET Test (FeatureManagement.UI) | |
run: dotnet test --no-restore --verbosity normal |