[ECO-2152] Segment REST and WS endpoints for dual load balancer schema #1917
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: |- | |
4bab58978ec1b1bef032eeb285ad47a6a9b997d646c19b598c35f46b26ff9ece | |
PUBLISHER_PK: |- | |
29479e9e5fe47ba9a8af509dd6da1f907510bcf8917bfb19b7079d8c63c0b720 | |
START_LOCAL_NODE_FOR_TEST: 'true' | |
TS_DIR: 'src/typescript' | |
jobs: | |
ts-run-tests: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
submodules: 'false' | |
- run: | | |
git submodule update --init --recursive src/inbox | |
cp src/inbox/example.env src/inbox/.env && \ | |
docker buildx create \ | |
--name=mybuilder \ | |
--use \ | |
--driver=docker-container | |
shell: 'bash' | |
- 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 | |
... |