Commit 35a0b850 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

ci: Fix contracts bedrock tests (#2891)

Checkout needs ot happen before the run check.
parent 4d59bf04
...@@ -108,6 +108,10 @@ jobs: ...@@ -108,6 +108,10 @@ jobs:
- image: ethereumoptimism/ci-builder:latest - image: ethereumoptimism/ci-builder:latest
resource_class: medium resource_class: medium
steps: steps:
- restore_cache:
keys:
- v2-cache-yarn-build-{{ .Revision }}
- checkout
- run: - run:
name: Check if we should run name: Check if we should run
command: | command: |
...@@ -115,10 +119,6 @@ jobs: ...@@ -115,10 +119,6 @@ jobs:
if [[ "$CHANGED" = "FALSE" ]]; then if [[ "$CHANGED" = "FALSE" ]]; then
circleci step halt circleci step halt
fi fi
- restore_cache:
keys:
- v2-cache-yarn-build-{{ .Revision }}
- checkout
- run: - run:
name: lint name: lint
command: yarn lint:check command: yarn lint:check
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment