Skip to content

WIP: Instantiate cw721 using CW721_CREATOR store #223

WIP: Instantiate cw721 using CW721_CREATOR store

WIP: Instantiate cw721 using CW721_CREATOR store #223

Workflow file for this run

name: integration test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: get cached just
uses: actions/cache@v3
with:
path: ~/.cargo/bin/just
key: ${{ runner.os }}-just-${{ env.JUST_VERSION }}
- name: install just
run: cargo install just || true
- name: start local chains
run: just start-local-chains > /dev/null
- name: integration test
run: just integration-test
- name: stop local chains
run: just stop-local-chains