Skip to content

Commit

Permalink
Fix for shared steps (you first need to checkout the repo itself).
Browse files Browse the repository at this point in the history
  • Loading branch information
shimkiv committed Jul 30, 2023
1 parent 93b3555 commit bd4ec22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/actions/live-tests-shared/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description: "Shared steps for live testing jobs"
runs:
using: "composite"
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/live-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
# - https://hub.docker.com/r/o1labs/mina-local-network
options: --log-driver=none
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use shared steps for live testing jobs
uses: ./.github/actions/live-tests-shared

Expand All @@ -54,6 +56,8 @@ jobs:
# - https://hub.docker.com/r/o1labs/mina-local-network
options: --log-driver=none
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use shared steps for live testing jobs
uses: ./.github/actions/live-tests-shared

Expand All @@ -76,5 +80,7 @@ jobs:
# - https://hub.docker.com/r/o1labs/mina-local-network
options: --log-driver=none
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use shared steps for live testing jobs
uses: ./.github/actions/live-tests-shared

0 comments on commit bd4ec22

Please sign in to comment.