Skip to content

feat: rework zappers #122

feat: rework zappers

feat: rework zappers #122

Workflow file for this run

name: Check PR
on:
pull_request:
types: [opened, reopened, synchronize]
env:
HUSKY: 0
CI: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
cache: "yarn"
node-version-file: ".nvmrc"
- name: Configure access to private npm packages
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run forge unit tests
run: forge test --no-match-test _live_
- name: Run forge integration tests
run: forge test --match-test _live_ --fork-url ${{ secrets.LIVE_TESTS_FORK }} --chain-id 1337
- name: Perform checks
run: |
yarn typecheck:ci
yarn lint:ci
yarn prettier:ci