Skip to content

10433 Design Debt: Inaccurate Banner for Petitioner #9258

10433 Design Debt: Inaccurate Banner for Petitioner

10433 Design Debt: Inaccurate Banner for Petitioner #9258

name: E2E Cypress Smoketests Local
on:
pull_request:
jobs:
e2e_cypress_smoketests_local:
runs-on: ubuntu-latest
env:
CI: true
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: Run E2E Cypress Smoketests
run: |
mkdir -p /tmp/cypress/
npm run start:all:ci >> /tmp/cypress/cypress-output.txt &
./wait-until-services.sh
sleep 5
npm run cypress:smoketests:local
- name: Store Cypress Failure Videos
if: always()
uses: actions/upload-artifact@v4
with:
name: cypress-videos
path: ${{ github.workspace }}/cypress/deployed-and-local/videos
- name: Store Logs
uses: actions/upload-artifact@v4
with:
name: cypress-logs
path: /tmp/cypress