File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 36
36
run : solana-keygen new --no-bip39-passphrase
37
37
- name : Install Anchor
38
38
run : RUSTFLAGS= cargo install --git https://github.com/coral-xyz/anchor --tag v0.30.1 anchor-cli
39
- - name : Install pnpm
40
- run : npm install --global pnpm@9.15.4
41
- - name : Install test dependencies
42
- run : pnpm install --frozen-lockfile
43
- - name : Run tests
44
- run : pnpm run test
Original file line number Diff line number Diff line change 6
6
"fix:format" : " prettier --write **/*.*" ,
7
7
"test:format" : " prettier --check **/*.*" ,
8
8
"test:anchor" : " CARGO_TARGET_DIR=\" $PWD/target\" anchor test" ,
9
- "test" : " pnpm run test:format && pnpm run test:anchor" ,
10
9
"setup" : " pnpm ts-node scripts/setup.ts" ,
11
10
"check-trusted-signer" : " pnpm ts-node scripts/check_trusted_signer.ts"
12
11
},
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://turbo.build/schema.json" ,
3
+ "extends" : [" //" ],
4
+ "tasks" : {
5
+ "test" : {
6
+ "dependsOn" : [" test:format" , " test:anchor" ]
7
+ },
8
+ "test:anchor" : {}
9
+ }
10
+ }
You can’t perform that action at this time.
0 commit comments