Skip to content

[ECO-2158] Create a docker image for starting the emojicoin_dot_fun local testnet for e2e testing locally and in CI #1947

[ECO-2158] Create a docker image for starting the emojicoin_dot_fun local testnet for e2e testing locally and in CI

[ECO-2158] Create a docker image for starting the emojicoin_dot_fun local testnet for e2e testing locally and in CI #1947

Workflow file for this run

---
env:
NEXT_PUBLIC_MODULE_ADDRESS: >-
0xf000d910b99722d201c6cf88eb7d1112b43475b9765b118f289b5d65d919000d
PUBLISHER_PRIVATE_KEY: >-
0xeaa964d1353b075ac63b0c5a0c1e92aa93355be1402f6077581e37e2a846105e
START_LOCAL_NODE_FOR_TEST: 'true'
TS_DIR: 'src/typescript'
jobs:
ts-run-tests:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v4'
with:
submodules: 'false'
- name: 'Install the latest Aptos CLI'
uses: 'aptos-labs/aptos-core/.github/actions/get-latest-cli@8792eef'
with:
destination_directory: '/usr/local/bin'
- uses: './.github/actions/ts-run-tests'
name: 'Run the TypeScript E2E and unit tests with a local testnet'
'on':
pull_request: null
push:
branches:
- 'main'
workflow_dispatch: null
...