Skip to content

Commit 3552bb5

Browse files
committed
Fixed.
1 parent 981a629 commit 3552bb5

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/npmpublish.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ jobs:
2323
run: mv etherpad-lite ..
2424
-
2525
uses: actions/checkout@v4
26-
-
27-
name: Create ep_etherpad-lite symlink
28-
run: |
29-
mkdir -p node_modules
30-
ln -s ../../etherpad-lite/src node_modules/ep_etherpad-lite
3126
-
3227
uses: actions/setup-node@v3
3328
with:
@@ -49,13 +44,16 @@ jobs:
4944
restore-keys: |
5045
${{ runner.os }}-pnpm-store-
5146
-
52-
run: cd ../etherpad-lite/src && pnpm i
47+
run: cd ../etherpad-lite/src && ./bin/installDeps.sh
5348
-
54-
run: pnpm i
49+
run: |
50+
pnpm config set auto-install-peers false
51+
pnpm i
5552
-
5653
run: pnpm install ep_etherpad-lite@file:../etherpad-lite/src
5754
-
58-
run: pnpm i && pnpm test
55+
run: |
56+
pnpm run test
5957
working-directory: ./node_modules/ep_etherpad-lite
6058
-
6159
run: pnpm run lint

0 commit comments

Comments
 (0)