78 lines
1.8 KiB
YAML
78 lines
1.8 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- feat/**
|
|
- release/**
|
|
pull_request:
|
|
|
|
jobs:
|
|
server:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
global-json-file: global.json
|
|
|
|
- name: Restore
|
|
run: dotnet restore PhysOn.sln
|
|
|
|
- name: Build API
|
|
run: dotnet build src/PhysOn.Api/PhysOn.Api.csproj -c Release --no-restore
|
|
|
|
- name: Build Worker
|
|
run: dotnet build src/PhysOn.Worker/PhysOn.Worker.csproj -c Release --no-restore
|
|
|
|
- name: Run API integration tests
|
|
run: dotnet test tests/PhysOn.Api.IntegrationTests/PhysOn.Api.IntegrationTests.csproj -c Release --no-restore
|
|
|
|
web:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: npm
|
|
cache-dependency-path: src/PhysOn.Web/package-lock.json
|
|
|
|
- name: Install web dependencies
|
|
run: npm ci
|
|
working-directory: src/PhysOn.Web
|
|
|
|
- name: Lint web
|
|
run: npm run lint
|
|
working-directory: src/PhysOn.Web
|
|
|
|
- name: Build web
|
|
run: npm run build
|
|
working-directory: src/PhysOn.Web
|
|
|
|
desktop-windows:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
global-json-file: global.json
|
|
|
|
- name: Restore desktop project
|
|
run: dotnet restore src/PhysOn.Desktop/PhysOn.Desktop.csproj
|
|
|
|
- name: Build desktop project
|
|
run: dotnet build src/PhysOn.Desktop/PhysOn.Desktop.csproj -c Release --no-restore
|