Skip to content

Commit 7a59c0f

Browse files
committed
chore: remove node tests from solana lazer contract workflow
1 parent 2fe9fb8 commit 7a59c0f

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/ci-lazer-solana-contract.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,3 @@ jobs:
3636
run: solana-keygen new --no-bip39-passphrase
3737
- name: Install Anchor
3838
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

lazer/contracts/solana/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"fix:format": "prettier --write **/*.*",
77
"test:format": "prettier --check **/*.*",
88
"test:anchor": "CARGO_TARGET_DIR=\"$PWD/target\" anchor test",
9-
"test": "pnpm run test:format && pnpm run test:anchor",
109
"setup": "pnpm ts-node scripts/setup.ts",
1110
"check-trusted-signer": "pnpm ts-node scripts/check_trusted_signer.ts"
1211
},

lazer/contracts/solana/turbo.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
}

0 commit comments

Comments
 (0)