test: fix the livedocs models to support serialization: you cannot have nullable, required properties #71
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: Pull Request | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [opened, reopened, synchronize] | |
jobs: | |
build-and-test-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Install .NET Aspire workload | |
run: dotnet workload install aspire | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies and build the client | |
working-directory: example/livedocs-client | |
run: | | |
npm ci | |
npm run build | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test with coverage | |
run: dotnet test ./tests/RxDBDotNet.Tests/RxDBDotNet.Tests.csproj --configuration Release --collect:"XPlat Code Coverage" --settings coverlet.runsettings | |
timeout-minutes: 5 | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
files: ./tests/RxDBDotNet.Tests/TestResults/*/coverage.lcov | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Auto-label the PR | |
uses: release-drafter/release-drafter@v5 | |
with: | |
config-name: release-drafter.yml | |
disable-releaser: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |