Skip to content

[ci] Add more projects to codecov #1552 #643

[ci] Add more projects to codecov #1552

[ci] Add more projects to codecov #1552 #643

Workflow file for this run

name: agdb_web
on:
pull_request:
branches: ["main"]
paths:
- agdb_web/**
- .github/workflows/agdb_web.yaml
jobs:
agdb_web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run format:check -- --filter=agdb_web
- run: npm run lint:check -- --filter=agdb_web
- run: npm run build -- --filter=agdb_web
- run: npm run test -- --filter=agdb_web
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage
path: agdb_web/coverage/
retention-days: 30
- run: npx playwright install --with-deps
- run: npm run test:e2e -- --filter=agdb_web
- uses: actions/upload-artifact@v4
if: always()
with:
name: e2e
path: agdb_web/playwright-report/
retention-days: 30