From 3570e766f61af705a467ebc496ddf7ac21616dfd Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Wed, 4 Mar 2026 11:05:25 +0100 Subject: [PATCH] chore(ci): delete redundant ci workflow --- .gitea/workflows/ci.yml | 51 ----------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index 16b6b8ab..00000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: CI - Lint, Typecheck & Test - -on: - pull_request: - -concurrency: - group: deploy-pipeline - cancel-in-progress: true - -jobs: - quality-assurance: - runs-on: docker - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup pnpm - uses: pnpm/action-setup@v3 - with: - version: 10 - run_install: false - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: ๐Ÿ” Configure Private Registry - run: | - echo "@mintel:registry=https://git.infra.mintel.me/api/packages/mmintel/npm" > .npmrc - echo "//git.infra.mintel.me/api/packages/mmintel/npm/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc - - - name: Install dependencies - run: pnpm install --no-frozen-lockfile - env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: ๐Ÿงช QA Checks - env: - TURBO_TELEMETRY_DISABLED: "1" - run: npx turbo run check:mdx lint typecheck test --cache-dir=".turbo" - - - name: ๐Ÿ—๏ธ Build - run: pnpm build - - - name: โ™ฟ Accessibility Check - run: pnpm start-server-and-test start http://localhost:3000 "pnpm check:a11y http://localhost:3000" - - - name: โ™ฟ WCAG Sitemap Audit - run: pnpm start-server-and-test start http://localhost:3000 "pnpm run check:wcag http://localhost:3000" -# monitor trigger