Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

ci: using boojum branch of test node #42

Closed
wants to merge 6 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,17 @@ jobs:
node-version: 18.18.0
cache: yarn

- name: Install rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly-2023-04-17

- name: Use era-test-node for testing
uses: dutterbutter/era-test-node-action@latest
uses: baptiste0928/cargo-install@v2
with:
crate: era_test_node
git: https://github.com/matter-labs/era-test-node.git
branch: boojum-integration

- name: Install dependencies
run: yarn
Expand All @@ -85,6 +94,9 @@ jobs:
contracts/precompiles/artifacts
bootloader/build

- name: Starting test node
run: era_test_node run > /dev/null 2>&1 &

- name: Run tests
run: yarn test

Expand Down
Loading