Skip to content

Install SDD: fresh SPEC.md coverage written from the code alone #3594

Install SDD: fresh SPEC.md coverage written from the code alone

Install SDD: fresh SPEC.md coverage written from the code alone #3594

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
# Prevent workflow being run twice, https://github.com/orgs/community/discussions/57827#discussioncomment-6579237
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install
- run: pnpm build
- run: pnpm typecheck
- run: pnpm test