Skip to content

Change Hook Flags to LSB #220

Change Hook Flags to LSB

Change Hook Flags to LSB #220

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- dev
jobs:
forge-tests:
name: Forge Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 16
cache-dependency-path: './test/js-scripts'
cache: 'yarn'
- run: yarn
working-directory: ./test/js-scripts
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Build
run: forge build
env:
FOUNDRY_PROFILE: pr
- name: Run tests
run: forge test --isolate -vvv
env:
FOUNDRY_PROFILE: pr
FORGE_SNAPSHOT_CHECK: true