mirror of
https://github.com/gavvvr/obsidian-timecodes-plugin.git
synced 2026-07-22 05:38:08 +00:00
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:
parent
5e2ec97973
commit
bc35cb11ee
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue