gh action fix

This commit is contained in:
Conner Gallagher 2022-12-15 20:05:46 -07:00
parent fd25747d73
commit 2cdcbf6ca5
2 changed files with 2 additions and 3 deletions

View File

@ -138,6 +138,4 @@ jobs:
J7nSEX8ADf3pVVicd6yKy2Skvg8iLePEmkLUisAAaioD"
- name: Run Tests
working-directory: javascript/solana.js
run:
SWITCHBOARD_PROGRAM_ID=SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f npm
run test:localnet
run: npm run test:localnet:mainnet

View File

@ -46,6 +46,7 @@
"pretest": "npm run build",
"test": "node ./node_modules/mocha/bin/mocha --loader=ts-node/esm --extension ts --timeout 10000",
"test:localnet": "SOLANA_LOCALNET=1 node ./node_modules/mocha/bin/mocha --loader=ts-node/esm --extension ts --timeout 10000",
"test:localnet:mainnet": "SWITCHBOARD_PROGRAM_ID=SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f SOLANA_LOCALNET=1 node ./node_modules/mocha/bin/mocha --loader=ts-node/esm --extension ts --timeout 10000",
"localnet:up": "npm run local:validator & sleep 20 && npm run test:localnet",
"localnet:down": "kill -9 $(pgrep command solana-test-validator) || exit 0",
"localnet": "npm run localnet:up; npm run localnet:down",