[ECO-2056] Add e2e search test #2591
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
env: | |
NEXT_PUBLIC_MODULE_ADDRESS: >- | |
0xf000d910b99722d201c6cf88eb7d1112b43475b9765b118f289b5d65d919000d | |
PUBLISHER_PRIVATE_KEY: >- | |
0xeaa964d1353b075ac63b0c5a0c1e92aa93355be1402f6077581e37e2a846105e | |
TS_DIR: 'src/typescript' | |
jobs: | |
ts-run-tests: | |
permissions: | |
contents: 'write' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v4' | |
with: | |
submodules: 'false' | |
- name: 'Install the latest Aptos CLI' | |
# yamllint disable-line rule:line-length | |
uses: 'aptos-labs/aptos-core/.github/actions/get-latest-cli@8792eefecd537c33fb879984635a0762838e2329' | |
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' | |
- 'production' | |
workflow_dispatch: null | |
... |