diff --git a/.circleci/config.yml b/.circleci/config.yml index d118278987..f55b92815d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -64,6 +64,15 @@ jobs: - run: name: testStateConstantinople command: npm run testStateConstantinople + test_state_petersburg: + <<: *defaults + steps: + - attach_workspace: + at: ~/project + - *restore_node_modules + - run: + name: testStatePetersburg + command: npm run testStatePetersburg test_blockchain: <<: *defaults steps: @@ -99,6 +108,9 @@ workflows: - test_state_constantinople: requires: - install + - test_state_petersburg: + requires: + - install - test_blockchain: requires: - install