Skip to content

feat!: upstream to optimism v1.2.0 #576

feat!: upstream to optimism v1.2.0

feat!: upstream to optimism v1.2.0 #576

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- dev
- main
jobs:
test:
name: Run tests
runs-on:
group: kroma-runners
labels: kroma-ubuntu-22-04-16core
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go 1.21
uses: actions/setup-go@v4
with:
go-version: '1.21'
- run: go mod download
- name: Setup Node.js 16.x
uses: actions/setup-node@master
with:
node-version: 16.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn Cache
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-d369d2486f85576eec4ca41d277391dfdae21ba7
- name: Build
run: yarn build
- name: Run tests
env:
E2E_DISABLE_PARALLEL: true
run: make test