From 489dfcbd77a6d9ae5256a0be9e2997959b2fe540 Mon Sep 17 00:00:00 2001 From: jableader Date: Sat, 25 Oct 2025 13:19:42 +1100 Subject: [PATCH] Removed ci actions --- .github/workflows/ci.yml | 45 ---------------------------------------- 1 file changed, 45 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 c2103c3..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: CI - -on: - push: - branches: [ main, master ] - pull_request: - -jobs: - build-test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Codegen check - run: npm run codegen:check || true - - - name: Generate OpenAPI types - run: | - if [ -f "../munch-ease-backend/openapi.json" ]; then - npm run codegen - else - echo "Backend openapi.json not found. Skipping codegen." - fi - - - name: Typecheck - run: npm run -s typecheck - - - name: Typecheck Vue SFC templates - run: npm run -s typecheck:vue - - - name: Lint - run: npm run -s lint - - - name: Test - run: npm run -s test