Files
mb-grid-solutions.com/.gitea/workflows/ci.yml
Marc Mintel 0633326c1e
Some checks failed
CI - Quality Assurance / 🧪 QA (pull_request) Failing after 14s
fix(ci): stabilize nightly qa pipeline browser dependencies and pnpm build scripts
2026-05-03 11:42:11 +02:00

37 lines
1.0 KiB
YAML

name: CI - Quality Assurance
on:
pull_request:
jobs:
qa:
name: 🧪 QA
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: 🔐 Registry Auth
run: |
REGISTRY="${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}"
echo "@mintel:registry=https://$REGISTRY" > .npmrc
echo "//$REGISTRY/:_authToken=${{ secrets.NPM_TOKEN || secrets.GITEA_PAT || secrets.MINTEL_PRIVATE_TOKEN || secrets.REGISTRY_PASS }}" >> .npmrc
- name: Install dependencies
run: |
rm -rf .next .turbo node_modules || true
pnpm install --frozen-lockfile
- name: 🧪 Parallel Checks
run: |
pnpm lint &
pnpm build &
wait