10076: DOD #507
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
name: E2E Pa11y Public (Search) | |
on: | |
pull_request: | |
jobs: | |
e2e_pa11y_public: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.15.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: Runs Elasticsearch | |
uses: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: 7.10.2 | |
security-enabled: false | |
- name: Setup DynamoDB Local | |
uses: rrainn/[email protected] | |
with: | |
port: 8000 | |
cors: '*' | |
- name: Collect Workflow Telemetry | |
uses: runforesight/workflow-telemetry-action@v1 | |
with: | |
comment_on_pr: false | |
- name: Install Node Dependencies | |
run: npm ci | |
- name: Start API and Client | |
run: | | |
mkdir -p /tmp/pa11y/ | |
npm run start:all:ci >> /tmp/pa11y/pa11y-server.txt & | |
./wait-until-services.sh | |
URL=http://localhost:5000/public-api/health ./wait-until.sh | |
sleep 10 | |
- name: Run E2E Pa11y Public | |
run: npm run test:pa11y:public --node-flags --max-old-space-size=1536 | |
- name: Run E2E Pa11y Public Search | |
run: npm run test:pa11y:public-search --node-flags --max-old-space-size=1536 | |
- name: Store Screenshots Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: screen-shots | |
path: ${{ github.workspace }}/web-client/pa11y/pa11y-screenshots | |
- name: Store Server Logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: server-logs | |
path: /tmp/pa11y |