Ask to call pro-features build after push if available #1499
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
# Builds and test | |
name: build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
dotnet-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: setup .net | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Nuget package cache | |
uses: actions/cache@v4 | |
id: nuget-package-cache | |
env: | |
cache-name: nuget-package-cache | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: dotnet build Serenity.sln | |
run: dotnet build /p:SkipNodeScripts=true | |
- name: dotnet test | |
run: dotnet test --no-build --verbosity normal | |
- name: pnpm install | |
uses: ./.github/actions/pnpm-install | |
- name: sleekgrid tests | |
run: pnpm test | |
working-directory: "packages/sleekgrid" | |
- name: corelib tests | |
run: pnpm test | |
working-directory: "packages/corelib" |