fix(ci): add missing node and pnpm setup to component tests

Every job runs in an isolated container. The component-tests job
was missing the Node.js and pnpm installation steps, causing
command not found errors (exit code 127) during local execution.
This commit is contained in:
2026-08-02 14:30:05 +02:00
parent 75c8300d84
commit 768a43d9b6
+10 -1
View File
@@ -69,5 +69,14 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: corepack enable
- run: corepack prepare pnpm@11.11.0 --activate
- run: pnpm install --frozen-lockfile
- name: Run component tests (Docker)
run: pnpm test:component
run: pnpm test:component