Skip to content

Fix CI

Fix CI #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm i
- run: curl -L https://foundry.paradigm.xyz | bash && foundryup
- name: Run Linter
run: npm run lint
- name: Run Compile
run: npx hardhat compile
- name: Run node and tests
run: anvil & sleep 2 && npx hardhat test