feat: delete_linkdrop (#105) #322
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 | |
on: push | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
node-version: ['16'] | |
toolchain: [stable] | |
runs-on: ${{ matrix.platform }} | |
env: | |
SANDBOX_ARTIFACT_URL: https://s3-us-west-1.amazonaws.com/build.nearprotocol.com/nearcore/Linux-x86_64/master/57362268301554563c4f800af963a1270b3d5283/near-sandbox.tar.gz | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "${{ matrix.toolchain }} with rustfmt, and wasm32" | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.toolchain }} | |
target: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v1 | |
- name: Add wasm32 target | |
run: rustup target add wasm32-unknown-unknown | |
- name: install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run tests | |
run: npm ci && npm run test:ci |