Skip to content

Address migration error and continue monorepo refactor #434

Address migration error and continue monorepo refactor

Address migration error and continue monorepo refactor #434

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
- uses: pnpm/action-setup@v4
- uses: extractions/setup-just@v3
- run: just install
- run: just check
test:
needs: check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
- uses: pnpm/action-setup@v4
- uses: extractions/setup-just@v3
- run: just install
- run: just test-coverage
- uses: davelosert/vitest-coverage-report-action@v2
if: always()
with:
comment-on: "pr"
json-summary-path: ./coverage/coverage-summary.json
json-final-path: ./coverage/coverage-final.json