From db1c3f3663da3277c2671651505353857597cc4f Mon Sep 17 00:00:00 2001 From: John Dvorak Date: Wed, 20 May 2026 16:37:39 -0700 Subject: [PATCH] (fix) Cleanup. --- .github/workflows/ci.yml | 44 ---------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 37e08ac..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: CI - -on: - pull_request: - push: - branches: - - main - - master - -jobs: - test: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - node-version: [20.x, 22.x] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Build - run: npm run build - - - name: Run source tests - run: npm run test:src - - - name: Run CLI tests - run: npm run test:cli - - - name: Determinism smoke (fixed seed) - run: npx tsx --test src/test/cli/verify-ux.test.ts --test-name-pattern "verify repeated runs with fixed seed produce identical artifacts" - - - name: Run packaging tests - run: npx tsx --test src/test/cli/packaging.test.ts