Skip to content

Update collections-js/src/contract.ts #130

Update collections-js/src/contract.ts

Update collections-js/src/contract.ts #130

Workflow file for this run

name: Tests
on:
repository_dispatch:
types: [tests-report]
push:
jobs:
tests:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- name: test:collections-rs
run: cd collections-rs && mkdir -p ./target/near/store/ && mkdir -p ./target/near/legacy/ && cargo test
- name: test:collections-js
run: cd collections-js && yarn && yarn test