Skip to content

build(deps): bump next from 14.2.3 to 14.2.10 #677

build(deps): bump next from 14.2.3 to 14.2.10

build(deps): bump next from 14.2.3 to 14.2.10 #677

name: Contracts - Foundry Test Suite
on:
push:
branches:
- main
tags:
- "*"
pull_request:
types: [opened, synchronize]
jobs:
contracts-test-suite:
runs-on: ubuntu-latest
env:
FORCE_COLOR: true
REPORT_GAS: true
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/[email protected]
with:
node-version: "20"
- run: yarn install
- run: forge test -vvv
working-directory: packages/contracts