From f7f5ac7e3bdbbce99aa3fa5b6d363ad8d91b97e7 Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 29 Mar 2026 14:05:26 -0500 Subject: [PATCH] Delete .github/workflows/ci.yml --- .github/workflows/ci.yml | 75 ---------------------------------------- 1 file changed, 75 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 b1dad8f..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,75 +0,0 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - server: - name: Server — typecheck & build - runs-on: ubuntu-latest - defaults: - run: - working-directory: server - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - cache-dependency-path: server/package-lock.json - - - name: Install dependencies - run: npm ci - - - name: Generate Prisma client - run: npx prisma generate - - - name: Typecheck - run: npx tsc --noEmit - - - name: Build - run: npm run build - - client: - name: Client — typecheck & build - runs-on: ubuntu-latest - defaults: - run: - working-directory: client - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - cache-dependency-path: client/package-lock.json - - - name: Install dependencies - run: npm ci - - - name: Typecheck - run: npx tsc --noEmit - - - name: Build - run: npm run build - - docker: - name: Docker build (smoke test) - runs-on: ubuntu-latest - needs: [server, client] - - steps: - - uses: actions/checkout@v4 - - - name: Build image - run: | - docker build \ - --build-arg NODE_ENV=production \ - -t vendor-pos:ci .