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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user