diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9d9346359e..4b026a8f43f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,10 +5,10 @@ on: - '4.x' tags: - v4* - pull_request: - branches: - - '4.x' - types: [opened, reopened, synchronize] + # pull_request: + # branches: + # - '4.x' + # types: [opened, reopened, synchronize] jobs: build: diff --git a/.github/workflows/e2e_network_tests.yml b/.github/workflows/e2e_network_tests.yml index 133815e4e2e..892707fbd4e 100644 --- a/.github/workflows/e2e_network_tests.yml +++ b/.github/workflows/e2e_network_tests.yml @@ -6,11 +6,11 @@ on: tags: - v4.* -# For test purpose only: -# pull_request: -# branches: -# - '4.x' -# types: [ opened, reopened, synchronize ] + pull_request: + branches: + - '4.x' + types: [opened, reopened, synchronize] + jobs: build: name: Build Packages diff --git a/packages/web3-eth/package.json b/packages/web3-eth/package.json index 6c598d767e7..ab937966056 100644 --- a/packages/web3-eth/package.json +++ b/packages/web3-eth/package.json @@ -36,12 +36,12 @@ "test": "jest --config=./test/unit/jest.config.js", "test:coverage:unit": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=text", "test:ci": "jest --coverage=true --coverage-reporters=json --verbose", - "test:e2e:mainnet": "jest --config=./test/e2e/jest.config.js --forceExit", - "test:e2e:sepolia": "jest --config=./test/e2e/jest.config.js --forceExit", + "test:e2e:mainnet": "jest --config=./test/e2e/jest.config.js", + "test:e2e:sepolia": "jest --config=./test/e2e/jest.config.js", "test:watch": "npm test -- --watch", "test:unit": "jest --config=./test/unit/jest.config.js", "test:integration": "jest --config=./test/integration/jest.config.js --runInBand", - "test:coverage:integration": "jest --config=./test/integration/jest.config.js --runInBand --forceExit --coverage=true --coverage-reporters=text", + "test:coverage:integration": "jest --config=./test/integration/jest.config.js --runInBand --coverage=true --coverage-reporters=text", "test:e2e:electron": "npx cypress run --headless --browser electron", "test:e2e:chrome": "npx cypress run --headless --browser chrome", "test:e2e:firefox": "npx cypress run --headless --browser firefox"