refactor: latest nibijs #305
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ⛓️ Tests @nibiruchain/nibijs | |
on: | |
pull_request: | |
branches: ["main", "releases/*"] | |
paths: ["**.js", "**.ts", "**.tsx", "**.json"] | |
push: | |
branches: ["main", "releases/*"] | |
paths: ["**.js", "**.ts", "**.tsx", "**.json"] | |
jobs: | |
test-nibijs: | |
runs-on: ubuntu-latest | |
env: | |
LCD_ENDPOINT: "http://127.0.0.1:1317" | |
GRPC_ENDPOINT: "127.0.0.1:9090" | |
TENDERMINT_RPC_ENDPOINT: "http://127.0.0.1:26657" | |
USE_LOCALNET: true | |
WEBSOCKET_ENDPOINT: "ws://127.0.0.1:26657/websocket" | |
CHAIN_ID: "nibiru-localnet-0" | |
VALIDATOR_MNEMONIC: "guard cream sadness conduct invite crumble clock pudding hole grit liar hotel maid produce squeeze return argue turtle know drive eight casino maze host" | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Install nibid | |
run: curl -s https://get.nibiru.fi/@v0.21.5! | bash | |
# Use https://get.nibiru.fi/ to get the most recent release. | |
- name: Run localnet.sh in the background | |
run: | | |
sh scripts/localnet.sh & | |
- name: Setup NodeJS and npm | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/hydrogen" | |
- name: Install yarn using npm | |
run: npm install -g yarn | |
- name: Setup NodeJS with yarn caching | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/hydrogen" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn --prefer-offline --check-files | |
- name: Build the application | |
run: yarn build --include-dependencies || yarn build --parallel --include-dependencies | |
- name: Run tests - nibijs | |
run: yarn test:nibijs |