Skip to content

Commit 9779987

Browse files
authored
Update GitHub Actions workflow for tests (#149)
Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com>
1 parent 9c420a7 commit 9779987

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- uses: ./.github/actions/install-dependencies
12-
- run: pnpm install --no-frozen-lockfile
1312

1413
build:
1514
name: Run build
@@ -24,17 +23,16 @@ jobs:
2423
tests:
2524
name: Run all tests
2625
runs-on: ubuntu-latest
27-
needs: [build]
26+
needs: [install]
2827
steps:
2928
- uses: actions/checkout@v4
3029
- uses: ./.github/actions/install-dependencies
3130
- name: Install Foundry
3231
uses: foundry-rs/foundry-toolchain@v1
3332
with:
34-
version: v1.5.0
33+
version: nightly
3534
- name: Start Anvil in background
3635
run: anvil --fork-url https://nodes.sequence.app/arbitrum &
37-
- run: pnpm build
3836
- run: pnpm test
3937

4038
# NOTE: if you'd like to see example of how to run

0 commit comments

Comments
 (0)