Skip to content

Commit

Permalink
fix: gh actions evm tests npm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
onikonychev committed May 25, 2024
1 parent 9abfb26 commit 8a13dc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e-evm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8a13dc8

Please sign in to comment.