ci: single pnpm install in repo root is enough now

That's because both packages (plugin itself and E2E-tests) belong to single pnpm-workspace now.
This commit is contained in:
Kirill Gavrilov 2026-06-07 14:03:05 +03:00 committed by Kirill Gavrilov
parent 5e2ec97973
commit bc35cb11ee
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ jobs:
- name: Test
run: pnpm run test:unit
- name: E2E tests
run: pnpm install && xvfb-run pnpm run test
run: xvfb-run pnpm run test
working-directory: e2e
- name: Upload unit-test coverage data
uses: actions/upload-artifact@v4

View file

@ -46,4 +46,4 @@ RUN corepack enable pnpm
# for running locally as: docker run --rm -it -v ${PWD}:/plugin local-ci-runner
WORKDIR /plugin
CMD ["sh", "-c", "pnpm i && cd e2e && pnpm i && xvfb-run pnpm run test"]
CMD ["sh", "-c", "pnpm i && cd e2e && xvfb-run pnpm run test"]