diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 30d9415cf808d..01b2a3ee25719 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -56,21 +56,21 @@ jobs: working-directory: ./examples/hardhat run: | yarn deploy - yarn test + yarn test:integration - name: Test & deploy hardhat-example on Optimism working-directory: ./examples/hardhat run: | yarn deploy:ovm - yarn test:ovm + yarn test:integration:ovm - name: Test & deploy waffle-example on waffle (regression) working-directory: ./examples/waffle run: | yarn compile - yarn test + yarn test:integration - name: Test & deploy waffle-example on Optimism working-directory: ./examples/waffle run: | yarn compile:ovm - yarn test:ovm + yarn test:integration:ovm diff --git a/examples/hardhat/package.json b/examples/hardhat/package.json index 9ca56ed98922a..1595983857ed1 100644 --- a/examples/hardhat/package.json +++ b/examples/hardhat/package.json @@ -9,8 +9,8 @@ "deploy:ovm": "hardhat deploy --network optimism", "compile": "hardhat compile", "compile:ovm": "hardhat compile --network optimism", - "test": "hardhat test", - "test:ovm": "hardhat test --network optimism", + "test:integration": "hardhat test", + "test:integration:ovm": "hardhat test --network optimism", "clean": "rimraf ./cache-ovm ./cache ./artifacts-ovm ./artifacts ./deployments" }, "devDependencies": { diff --git a/examples/waffle/package.json b/examples/waffle/package.json index e18710217355f..3767e78319b0d 100644 --- a/examples/waffle/package.json +++ b/examples/waffle/package.json @@ -6,8 +6,8 @@ "clean": "rimraf build", "compile": "waffle", "compile:ovm": "waffle waffle-ovm.json", - "test": "mocha 'test/*.spec.js' --timeout 10000", - "test:ovm": "TARGET=OVM mocha 'test/*.spec.js' --timeout 50000" + "test:integration": "mocha 'test/*.spec.js' --timeout 10000", + "test:integration:ovm": "TARGET=OVM mocha 'test/*.spec.js' --timeout 50000" }, "keywords": [ "optimism",