Skip to content

Bump to v2.1.0

Bump to v2.1.0 #29

Workflow file for this run

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