Feat/disable through appsettings #34
Workflow file for this run
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: Build and Test" | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**.cs" | |
- "**.tsx" | |
- "**.js" | |
- "**.csproj" | |
- "**.props" | |
- "**.targets" | |
- "**.sln" | |
- "**/Client/**/*.json" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**.cs" | |
- "**.tsx" | |
- "**.js" | |
- "**.csproj" | |
- "**.props" | |
- "**.targets" | |
- "**.sln" | |
- "**/Client/**/*.json" | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: pwsh | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
SIGN_FILE: false | |
PROJECT_NAME: Kentico.Xperience.AzureSearch | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install Node.js from package.json version" | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ./src/${{ env.PROJECT_NAME }}/Admin/Client/package.json | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
- name: Install dependencies | |
run: dotnet restore --locked-mode | |
- name: Build Solution | |
run: dotnet build --configuration Release --no-restore | |
- name: Test Solution | |
run: dotnet test --configuration Release --no-build --no-restore |