Skip to content

Feature/93 rebuild contracts #45

Feature/93 rebuild contracts

Feature/93 rebuild contracts #45

Workflow file for this run

name: "Install and build the app"
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
install-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-547e9757e37cc970ddae7ba84fb8f501a2367d0d
- name: Install yarn
run: npm i -g yarn
- name: Setup project
run: |
chmod +x ./install.sh
./install.sh
# - name: Deploy local contract & setup data
# run: |
# cd contracts
# yarn
# yarn hardhat compile
# yarn hardhat node > /dev/null 2>&1 &
# yarn deploy:local
# yarn cand
# - name: Build website
# run: |
# cd frontend
# yarn
# yarn build