공개: alpha.4 기준선 갱신

This commit is contained in:
Ian 2026-04-16 11:14:22 +09:00
commit b63832706b
37 changed files with 1839 additions and 822 deletions

View file

@ -33,6 +33,32 @@ jobs:
- 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