We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c420a7 commit 9779987Copy full SHA for 9779987
1 file changed
.github/workflows/tests.yml
@@ -9,7 +9,6 @@ jobs:
9
steps:
10
- uses: actions/checkout@v4
11
- uses: ./.github/actions/install-dependencies
12
- - run: pnpm install --no-frozen-lockfile
13
14
build:
15
name: Run build
@@ -24,17 +23,16 @@ jobs:
24
23
tests:
25
name: Run all tests
26
runs-on: ubuntu-latest
27
- needs: [build]
+ needs: [install]
28
29
30
31
- name: Install Foundry
32
uses: foundry-rs/foundry-toolchain@v1
33
with:
34
- version: v1.5.0
+ version: nightly
35
- name: Start Anvil in background
36
run: anvil --fork-url https://nodes.sequence.app/arbitrum &
37
- - run: pnpm build
38
- run: pnpm test
39
40
# NOTE: if you'd like to see example of how to run
0 commit comments