Skip to content

Commit

Permalink
Fix script names for JS client (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorisleiva authored Mar 3, 2025
1 parent 7065637 commit cade2d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-js-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ jobs:
solana: true

- name: Format JS Client
run: pnpm clients:js:format
run: pnpm js:format

- name: Lint JS Client
run: pnpm clients:js:lint
run: pnpm js:lint

- name: Build Programs
run: pnpm programs:build

- name: Test JS Client
run: pnpm clients:js:test
run: pnpm js:test

publish_js:
name: Publish JS client
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Publish JS Client
id: publish
run: pnpm clients:js:publish ${{ inputs.level }} ${{ inputs.tag }}
run: pnpm js:publish ${{ inputs.level }} ${{ inputs.tag }}

- name: Push Commit and Tag
run: git push origin --follow-tags
Expand Down
2 changes: 1 addition & 1 deletion clients/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A generated JavaScript library for the Stake program.
To build and test your JavaScript client from the root of the repository, you may use the following command.

```sh
pnpm clients:js:test
pnpm js:test
```

This will start a new local validator, if one is not already running, and run the tests for your JavaScript client.
Expand Down
2 changes: 1 addition & 1 deletion clients/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A generated Rust library for the Stake program.
To build and test your Rust client from the root of the repository, you may use the following command.

```sh
pnpm clients:js:test
pnpm js:test
```

This will start a new local validator, if one is not already running, and run the tests for your Rust client.

0 comments on commit cade2d6

Please sign in to comment.