ICS721 v2: cw721 v19 with creator and onchain extensioms (aka metadata) #252
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: 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 |