Files
cablecreations.de/.gitea/workflows/ci.yml
Marc Mintel 2b9f4b9841
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 27s
Build & Deploy / 🧪 QA (push) Successful in 58s
Build & Deploy / 🏗️ Build (push) Failing after 36s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s
Nightly QA / call-qa-workflow (push) Failing after 2m28s
fix(ci): Resolve Next.js eslint loading and remove last pnpm dependencies
2026-02-27 22:28:49 +01:00

47 lines
1.2 KiB
YAML

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 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: npm ci --include=dev --no-frozen-lockfile
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: 🧪 QA Checks
env:
TURBO_TELEMETRY_DISABLED: "1"
run: npm run lint --workspace=apps/website
- name: 🏗️ Build
run: npm run build --workspace=apps/website
# - name: ♿ Accessibility Check
# run: npx start-server-and-test start http://localhost:3000 "npm run check:a11y"
# - name: ♿ WCAG Sitemap Audit
# run: npx start-server-and-test start http://localhost:3000 "npm run check:wcag"
# monitor trigger