Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
038b3c4
docs: Update Readme and code snippets for @ucanto/transport
Dhruv-Varshney-developer Aug 19, 2025
6fd66a3
docs: Update Readme and code snippets for @ucanto/client
Dhruv-Varshney-developer Aug 19, 2025
d80540e
refactor: use native Response Constructor instead of custom construct…
Dhruv-Varshney-developer Aug 25, 2025
4a0a38d
refactor: use native Response constructor instead of custom response …
Dhruv-Varshney-developer Aug 25, 2025
2a89648
refactor: rename from CLIENT_KEYPAIR to AGENT_PRIVATE_KEY.
Dhruv-Varshney-developer Aug 26, 2025
7abf3c3
fix: Replace Service private key with SERVICE DID.
Dhruv-Varshney-developer Aug 26, 2025
5dc05d3
fix: Replace .env variables with setup instructions.
Dhruv-Varshney-developer Aug 26, 2025
2c7ee88
added playwright setup
NiKrause Oct 11, 2025
d31624a
fixed and improved readme according to #387 and PR #388
NiKrause Oct 11, 2025
f80b1f6
adding test badges
NiKrause Oct 11, 2025
ddb4540
changing badge url
NiKrause Oct 11, 2025
47430b8
fixing server tests
NiKrause Oct 11, 2025
f8da1ca
fixing typecheck
NiKrause Oct 11, 2025
38541bd
fixing server tests
NiKrause Oct 11, 2025
1b724ad
ts improvements
NiKrause Oct 11, 2025
570a04c
Update README badge URLs to point to original storacha/ucanto repository
NiKrause Oct 15, 2025
caf1f36
Merge branch 'pr-392' into combined-388-392
NiKrause Nov 18, 2025
9c5a455
Merge branch 'pr-388' into combined-388-392
NiKrause Nov 18, 2025
f884a18
refactor: address alanshaw's recommendations from PR #388
NiKrause Nov 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/interface.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/principal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/transport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ jobs:
with:
run_install: true

- name: Install Playwright browsers
run: npx playwright install

- name: Install Playwright system dependencies
run: npx playwright install-deps

- name: Test (Node)
run: pnpm run --if-present --dir packages/${{matrix.project}} test:node

Expand Down
Loading
Loading