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
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: 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 |