name: CI — Common Platform on: push: branches: [main] concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: build-and-test: name: Build, Test & Typecheck runs-on: ubuntu-latest timeout-minutes: 15 steps: - uses: actions/checkout@v4 - name: Install dependencies run: pnpm install --frozen-lockfile - name: Build all packages run: pnpm build - name: Typecheck run: pnpm typecheck - name: Test run: pnpm test