chore: Renamed pubky member dir to pubky-client (#90)

* chore: Renamed pubky member dir to pubky-client

* fixed paths

* fixed wasm test workflow
This commit is contained in:
Severin Alexander Bühler
2025-03-21 14:24:34 +02:00
committed by GitHub
parent ca0995cb23
commit 6f94333101
36 changed files with 10 additions and 11 deletions

View File

@@ -103,13 +103,13 @@ jobs:
uses: Swatinem/rust-cache@v2
- name: Build WASM
working-directory: pubky/pkg
working-directory: pubky-client/pkg
run: |
npm install
npm run build
- name: Run the testnet
working-directory: pubky/pkg
working-directory: pubky-client/pkg
run: npm run testnet > testnet.log 2>&1 &
- name: Wait for testnet homeserver
@@ -120,11 +120,11 @@ jobs:
done
- name: Run Tests (only node-js)
working-directory: pubky/pkg
working-directory: pubky-client/pkg
# runing only `test-nodjs` and not browser because of weird `exit` behavior
run: npm run test-nodejs
- name: Show testnet logs if tests fail
working-directory: pubky/pkg
working-directory: pubky-client/pkg
if: failure()
run: cat testnet.log