Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/actions/install-cache/action.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,4 @@ jobs:
- uses: ./.github/actions/install

- name: Run Linter
- name: Enable pnpm
run: corepack enable
run: pnpm run lint
14 changes: 2 additions & 12 deletions .github/workflows/foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
- uses: ./.github/actions/install

- name: Build contracts via IR & check sizes
- name: Enable pnpm
run: corepack enable
run: pnpm run build:forge --force --sizes # don't use compilation cache

build-no-ir:
Expand All @@ -38,21 +36,13 @@ jobs:
with:
submodules: recursive

- uses: ./.github/actions/install-cache
- uses: ./.github/actions/install

- name: Build contracts without IR
run: pnpm run build:forge
env:
FOUNDRY_PROFILE: test

- name: Save forge compilation cache
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
with:
path: |
cache
out
key: forge-${{ github.ref_name }}-${{ github.run_id }}

test:
needs: build-no-ir

Expand Down Expand Up @@ -81,7 +71,7 @@ jobs:
with:
submodules: recursive

- uses: ./.github/actions/install-cache
- uses: ./.github/actions/install

- name: Run tests in ${{ matrix.type }} mode
run: pnpm run test:forge -vvv
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/hardhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
- uses: ./.github/actions/install

- name: Build contracts
- name: Enable pnpm
run: corepack enable
run: pnpm run build:hardhat --force # don't use compilation cache

- name: Run hardhat tests
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ jobs:
- uses: ./.github/actions/install

- name: Build package
- name: Enable pnpm
run: corepack enable
run: pnpm run build:pkg

- name: Publish to npm
Expand Down
Loading