Skip to content

Commit

Permalink
run yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Jul 23, 2024
1 parent b7dbef0 commit 95466ba
Showing 1 changed file with 34 additions and 33 deletions.
67 changes: 34 additions & 33 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,46 @@
name: Build & Test

on:
push:
branches:
- main
pull_request:
branches:
- main
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
group: ${{ github.ref }}
cancel-in-progress: true

env:
FOUNDRY_PROFILE: ci
FOUNDRY_PROFILE: ci

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge build
run: |
yarn
forge --version
forge build --sizes
id: build

0 comments on commit 95466ba

Please sign in to comment.