feat: MintOnBehalf #180
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |