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 a69b61a commit d015679
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,27 @@ jobs:
- name: Install build tools
run: ./scripts/init.sh

- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "pnpm"

- name: Install pnpm packages
run: |
cd integration-tests &&
npm install -g pnpm &&
cd integration-tests
pnpm install
- name: Download polkadot binary
run: |
./integration-tests/scripts/download-polkadot.sh
run: ./scripts/download-polkadot.sh

- name: Cache Dependencies
uses: Swatinem/rust-cache@v1

- name: Run ZNDSL integration tests
run: ./integration-tests/scripts/deploy-zombienet.sh --test
run: ./scripts/deploy-zombienet.sh --test

chopsticks_zeitgeist_upgrade:
name: Zeitgeist Chopsticks Runtime Upgrade
Expand All @@ -44,10 +50,17 @@ jobs:
- name: Install build tools
run: ./scripts/init.sh

- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "pnpm"

- name: Install pnpm packages
run: |
cd integration-tests &&
npm install -g pnpm &&
cd integration-tests
pnpm install
- name: Cache Dependencies
Expand All @@ -66,10 +79,17 @@ jobs:
- name: Install build tools
run: ./scripts/init.sh

- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "pnpm"

- name: Install pnpm packages
run: |
cd integration-tests &&
npm install -g pnpm &&
cd integration-tests
pnpm install
- name: Cache Dependencies
Expand Down

0 comments on commit d015679

Please sign in to comment.