Skip to content

10323: Preserving initial tab in order #7855

10323: Preserving initial tab in order

10323: Preserving initial tab in order #7855

name: Node.js Client Integration Tests
on:
pull_request:
jobs:
client_integration_public:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ci_node_total: [2]
ci_node_index: [0, 1]
env:
CI_NODE_TOTAL: ${{ matrix.ci_node_total }}
CI_NODE_INDEX: ${{ matrix.ci_node_index }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.14.0'
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- name: Setup OpenSearch
uses: ankane/setup-opensearch@v1
with:
opensearch-version: 2.11
- name: Setup DynamoDB Local
uses: rrainn/[email protected]
with:
port: 8000
cors: '*'
- name: Collect Workflow Telemetry
uses: runforesight/workflow-telemetry-action@v2
with:
comment_on_pr: false
- name: Install Node Dependencies
run: npm ci
- name: Web Client - Integration Tests Public
run: |
mkdir -p /tmp/web-client
npm run start:api:ci > /tmp/web-client/server-output${{ matrix.ci_node_index }}.txt &
./wait-until-services.sh
export TESTFILES=$(npx ts-node split-tests.ts -public)
npm run test:client:integration:ci
- name: Store Artifacts
uses: actions/upload-artifact@v4
with:
name: server-log-output-${{ matrix.ci_node_index }}
path: /tmp/web-client/server-output${{ matrix.ci_node_index }}.txt