Skip to content

Merge pull request #96 from RootstockCollective/dao-850 #330

Merge pull request #96 from RootstockCollective/dao-850

Merge pull request #96 from RootstockCollective/dao-850 #330

Workflow file for this run

name: Run tests and lint
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: Compile contracts
run: yarn compile
- name: Test and Lint
run: |
yarn test
yarn lint