Cypress Integration Test Workflow #52
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: Cypress Integration Test Workflow | |
on: | |
workflow_dispatch: | |
inputs: | |
commit_sha: | |
description: 'Commit sha: from your branch' | |
required: true | |
product: | |
description: 'App: Your target product directory within src/applications' | |
required: true | |
# TO-DO: create a solution that maintains an updated list of active products within src/applications | |
env: | |
BUILDTYPE: vagovprod | |
VETS_WEBSITE_CHANNEL_ID: '' | |
jobs: | |
check-for-existing-build: | |
name: Check s3 for archived build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
uses: ./.github/workflows/install | |
timeout-minutes: 30 | |
with: | |
key: ${{ hashFiles('yarn.lock') }} | |
yarn_cache_folder: .cache/yarn | |
path: | | |
.cache/yarn | |
node_modules | |
- name: Configure AWS Credentials | |
uses: aws-actions/[email protected] | |
with: | |
aws-region: us-gov-west-1 | |
role-to-assume: arn:aws-us-gov:iam::008577686731:role/gha-frontend-nonprod-role | |
- name: Get va-vsp-bot token | |
uses: ./.github/workflows/inject-secrets | |
with: | |
ssm_parameter: /devops/VA_VSP_BOT_GITHUB_TOKEN | |
env_variable_name: VA_VSP_BOT_GITHUB_TOKEN | |
- name: Find the build | |
id: find-build | |
run: | | |
ARCHIVE_NAME=Z${{ github.event.inputs.commit_sha }}/vagovprod.tar.bz2 | |
BUCKET_PATH=s3://vetsgov-website-builds-s3-upload/artifacts/ | |
TARGET_DIR=build/${{ env.BUILDTYPE }} | |
aws s3 cp $BUCKET_PATH$ARCHIVE_NAME . | |
if [ -f $ARCHIVE_NAME ]; then | |
mkdir -p $TARGET_DIR | |
tar -xvjf $ARCHIVE_NAME -C /vets-website | |
echo "BUILD_EXISTS=true" >> $GITHUB_ENV | |
else | |
echo "Requested build not found. Workflow cannot run." | |
exit 1 | |
integration-test: | |
name: Set up variables and then run the integration tests. | |
runs-on: ubuntu-latest | |
needs: check-for-existing-build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.inputs.commit_sha }} | |
- name: Configure AWS Credentials | |
uses: aws-actions/[email protected] | |
with: | |
aws-region: us-gov-west-1 | |
role-to-assume: arn:aws-us-gov:iam::008577686731:role/gha-frontend-nonprod-role | |
- name: Get va-vsp-bot token | |
uses: ./.github/workflows/inject-secrets | |
with: | |
ssm_parameter: /devops/VA_VSP_BOT_GITHUB_TOKEN | |
env_variable_name: VA_VSP_BOT_GITHUB_TOKEN | |
- name: Run integration helper script | |
id: helper | |
run: | | |
chmod +x ./script/github-actions/cypress-integration-test.sh | |
./script/github-actions/cypress-integration-test.sh "${{ github.event.inputs.product }}" | |
- name: Call reusable action | |
id: cypress-action | |
uses: department-of-veterans-affairs/vsp-github-actions/cypress-integration-test/action.yaml@d482ec88d7cf3c8b633e4117eb0aa45815cf825f |