diff --git a/.github/workflows/e2e-evm.yml b/.github/workflows/e2e-evm.yml index f55898dde..368e58231 100644 --- a/.github/workflows/e2e-evm.yml +++ b/.github/workflows/e2e-evm.yml @@ -51,10 +51,10 @@ jobs: just install - name: Setup NodeJS with yarn caching - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/hydrogen" - cache: "yarn" + cache: "npm" - name: Install node_modules uses: borales/actions-yarn@v4 @@ -70,7 +70,7 @@ jobs: - name: Run tests uses: coactions/setup-xvfb@v1 with: - run: yarn test + run: npm test working-directory: "tests/evm" env: JSON_RPC_ENDPOINT: http://127.0.0.1:8545 diff --git a/CHANGELOG.md b/CHANGELOG.md index e9778e810..20b11d645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -66,6 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#1889](https://github.com/NibiruChain/nibiru/pull/1889) - feat: implemented basic evm tx methods - [#1883](https://github.com/NibiruChain/nibiru/pull/1883) - feat(evm): keeper logic, Ante handlers, EthCall, and EVM transactions. - [#1887](https://github.com/NibiruChain/nibiru/pull/1887) - test(evm): eth api integration test suite +- [#1887](https://github.com/NibiruChain/nibiru/pull/1896) - test(evm): ethers.js tests for evm #### Dapp modules: perp, spot, oracle, etc