Skip to content

Commit cade2d6

Browse files
authored
Fix script names for JS client (#59)
1 parent 7065637 commit cade2d6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish-js-client.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ jobs:
4242
solana: true
4343

4444
- name: Format JS Client
45-
run: pnpm clients:js:format
45+
run: pnpm js:format
4646

4747
- name: Lint JS Client
48-
run: pnpm clients:js:lint
48+
run: pnpm js:lint
4949

5050
- name: Build Programs
5151
run: pnpm programs:build
5252

5353
- name: Test JS Client
54-
run: pnpm clients:js:test
54+
run: pnpm js:test
5555

5656
publish_js:
5757
name: Publish JS client
@@ -89,7 +89,7 @@ jobs:
8989
9090
- name: Publish JS Client
9191
id: publish
92-
run: pnpm clients:js:publish ${{ inputs.level }} ${{ inputs.tag }}
92+
run: pnpm js:publish ${{ inputs.level }} ${{ inputs.tag }}
9393

9494
- name: Push Commit and Tag
9595
run: git push origin --follow-tags

clients/js/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A generated JavaScript library for the Stake program.
77
To build and test your JavaScript client from the root of the repository, you may use the following command.
88

99
```sh
10-
pnpm clients:js:test
10+
pnpm js:test
1111
```
1212

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

clients/rust/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A generated Rust library for the Stake program.
77
To build and test your Rust client from the root of the repository, you may use the following command.
88

99
```sh
10-
pnpm clients:js:test
10+
pnpm js:test
1111
```
1212

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

0 commit comments

Comments
 (0)