Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

chore(deps): bump tornado from 6.1 to 6.3.3 in /tools #104

chore(deps): bump tornado from 6.1 to 6.3.3 in /tools

chore(deps): bump tornado from 6.1 to 6.3.3 in /tools #104

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
node-version: [16]
runs-on: ${{ matrix.platform }}
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Start containers
run: npm run docker:regtest && npm run docker:geth
- name: Deploy Ethereum contracts
run: sleep 15 && npm run docker:geth:deploy
- name: Compile
run: npm run compile
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test:unit
- name: Integration tests
run: npm run test:int