Skip to content

Merge remote-tracking branch 'origin/develop' into feat/maci-v1 #250

Merge remote-tracking branch 'origin/develop' into feat/maci-v1

Merge remote-tracking branch 'origin/develop' into feat/maci-v1 #250

Workflow file for this run

name: Build and test contracts
on:
workflow_dispatch:
push:
paths:
- 'contracts/**'
env:
NODE_VERSION: 16.x
jobs:
test-contracts:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install
run: yarn
- name: Run tests
run: yarn test:contracts