Skip to content

Merge pull request #847 from nounsDAO/verbs-add-rewards-contract-depl… #2926

Merge pull request #847 from nounsDAO/verbs-add-rewards-contract-depl…

Merge pull request #847 from nounsDAO/verbs-add-rewards-contract-depl… #2926

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- run: yarn
- run: yarn build
- name: Uninstall Yarn
if: always()
run: npm uninstall -g yarn