Skip to content

feat: MintOnBehalf #180

feat: MintOnBehalf

feat: MintOnBehalf #180

Workflow file for this run

# Workflow name
name: "EsLint & Build Checks - PR"
# Event for the workflow
# Triggers the workflow on push or pull request events but only for the development branch
on:
pull_request:
types: [opened, reopened, ready_for_review, synchronize]
branches:
- main
- develop
# List of jobs
jobs:
es-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.15.1
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn lint
build:
runs-on: ubuntu-latest
needs: [es-lint]
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly