Skip to content

Merge pull request #87 from unit214/master #168

Merge pull request #87 from unit214/master

Merge pull request #87 from unit214/master #168

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Compile and Test Contracts
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: make install
- run: make start-node && sleep 3
- run: make test