We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f58bd commit 32de835Copy full SHA for 32de835
.github/workflows/backend-tests.yml
@@ -57,8 +57,12 @@ jobs:
57
pnpm config set auto-install-peers false
58
cd ./plugin
59
PLUGIN_NAME=$(npx -c 'printf %s\\n "${npm_package_name}"') || exit 1
60
- pnpm i
61
- ln -s ../src/node_modules/. ../node_modules/ep_client
+ pnpm install
+ pnpm link --global
62
+ - name: Link plugin to Etherpad
63
+ run: |
64
+ cd ./etherpad/src
65
+ pnpm link --global etherpad-cli-client
66
-
67
name: Remove core tests so only the client is tested
68
run: rm -rf ./etherpad/src/tests/backend/specs
.github/workflows/npmpublish.yml
@@ -49,8 +49,6 @@ jobs:
49
run: |
50
51
pnpm i
52
- -
53
- run: pnpm link --global etherpad
54
55
56
has_testcli_script () {
0 commit comments