Skip to content

Playwright Tests

Playwright Tests #4197

Workflow file for this run

name: Playwright Tests
permissions:
id-token: write # This is required for requesting the JWT for AWS creds
contents: read # This is required for actions/checkout
on:
deployment_status:
jobs:
# This is necessary to get credentials to use the private ECR image defined in the test job container.
login-to-amazon-ecr:
runs-on: ubuntu-latest
if: github.event.deployment_status.state == 'success'
steps:
- name: Configure AWS credentials
uses: aws-actions/[email protected]
with:
aws-region: us-gov-west-1
role-to-assume: ${{ vars.AWS_ASSUME_ROLE }}
mask-aws-account-id: 'false'
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
with:
mask-password: 'false'
outputs:
docker_username: ${{ steps.login-ecr.outputs.docker_username_008577686731_dkr_ecr_us_gov_west_1_amazonaws_com }}
docker_password: ${{ steps.login-ecr.outputs.docker_password_008577686731_dkr_ecr_us_gov_west_1_amazonaws_com }}
test:
timeout-minutes: 15
needs: login-to-amazon-ecr
runs-on: [self-hosted, asg]
container:
image: 008577686731.dkr.ecr.us-gov-west-1.amazonaws.com/node-18.19.0-bullseye:latest
credentials:
username: ${{ needs.login-to-amazon-ecr.outputs.docker_username }}
password: ${{ needs.login-to-amazon-ecr.outputs.docker_password }}
# Certs added for the self hosted runner
env:
NODE_EXTRA_CA_CERTS: /etc/ssl/certs/ca-certificates.crt
ports:
- 80
volumes:
- my_docker_volume:/home/runner
- /etc/ssl/certs:/etc/ssl/certs
if: github.event.deployment_status.state == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup Yarn
run: |
corepack enable
corepack install -g --cache-only .yarn/releases/corepack.tgz
- name: Install dependencies
run: |
yarn
- name: Install Playwright
run: |
yarn playwright install --with-deps
- name: Run Playwright tests
run: |
SITE_URL=${{ github.event.deployment_status.environment_url }} yarn test:playwright
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: ./playwright/test-report/
retention-days: 30