Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Chralt98 committed Dec 13, 2023
1 parent 0634057 commit 3b4ba2d
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ jobs:
- name: Install build tools
run: ./scripts/init.sh

- name: Move to integration-tests
run: cd integration-tests

- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -31,7 +28,9 @@ jobs:
cache-dependency-path: "integration-tests"

- name: Install pnpm packages
run: pnpm install
run: |
cd integration-tests
pnpm install
- name: Download polkadot binary
run: ./scripts/download-polkadot.sh
Expand All @@ -52,9 +51,6 @@ jobs:
- name: Install build tools
run: ./scripts/init.sh

- name: Move to integration-tests
run: cd integration-tests

- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -65,7 +61,9 @@ jobs:
cache-dependency-path: "integration-tests"

- name: Install pnpm packages
run: pnpm install
run: |
cd integration-tests
pnpm install
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1
Expand All @@ -83,9 +81,6 @@ jobs:
- name: Install build tools
run: ./scripts/init.sh

- name: Move to integration-tests
run: cd integration-tests

- uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -96,7 +91,9 @@ jobs:
cache-dependency-path: "integration-tests"

- name: Install pnpm packages
run: pnpm install
run: |
cd integration-tests
pnpm install
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1
Expand Down

0 comments on commit 3b4ba2d

Please sign in to comment.