Skip to content

feat: add support bundle and improve git error diagnostics (#30) #99

feat: add support bundle and improve git error diagnostics (#30)

feat: add support bundle and improve git error diagnostics (#30) #99

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint and format
run: pnpm checks
- name: Typecheck affected
run: pnpm turbo run typecheck --affected
- name: Test affected
run: pnpm turbo run test:coverage --affected
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: packages/cli/coverage/
if-no-files-found: ignore
retention-days: 30