Skip to content

Run e2e Tests

Run e2e Tests #637

Workflow file for this run

name: Run e2e Tests
on:
workflow_dispatch:
inputs:
prNumber:
description: '(Optional) PR Number. If you specify a value the value of the branch field will be ignored.'
required: false
default: ''
permissions:
contents: read
jobs:
run-e2e-tests-on-utils:
runs-on: ubuntu-latest
env:
NODE_ENV: dev
PR_NUMBER: ${{ inputs.prNumber }}
GH_TOKEN: ${{ github.token }}
permissions:
id-token: write # needed to interact with GitHub's OIDC Token endpoint.
contents: read
strategy:
max-parallel: 25
matrix:
package:
[
packages/idempotency,
packages/logger,
packages/metrics,
packages/parameters,
packages/tracer,
layers,
]
version: [18, 20, 22]
arch: [x86_64, arm64]
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# If we pass a PR Number when triggering the workflow we will retrieve the PR info and get its headSHA
- name: Extract PR details
id: extract_PR_details
if: ${{ inputs.prNumber != '' }}
run: |
# Get the PR number from the input
pr_number=${{ inputs.prNumber }}
# Get the headSHA of the PR
head_sha=$(gh pr view $pr_number --json headRefOid -q '.headRefOid')
# Set the headSHA as an output variable
echo "headSHA=$head_sha" >> $GITHUB_OUTPUT
echo "headSHA=$head_sha"
# Only if a PR Number was passed and the headSHA of the PR extracted,
# we checkout the PR at that point in time
- name: Checkout PR code
if: ${{ inputs.prNumber != '' }}
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ steps.extract_PR_details.outputs.headSHA }}
- name: Setup NodeJS
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version: '22'
- name: Setup dependencies
uses: aws-powertools/actions/.github/actions/cached-node-modules@29979bc5339bf54f76a11ac36ff67701986bb0f0
with:
nodeVersion: '22'
- name: Setup AWS credentials
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
with:
role-to-assume: ${{ secrets.AWS_ROLE_ARN_TO_ASSUME }}
aws-region: eu-west-1
mask-aws-account-id: true
- name: Run integration tests on utils
env:
RUNTIME: nodejs${{ matrix.version }}x
CI: true
ARCH: ${{ matrix.arch }}
JSII_SILENCE_WARNING_DEPRECATED_NODE_VERSION: true
RUNNER_DEBUG: ${{ env.RUNNER_DEBUG }}
run: npm run test:e2e -w ${{ matrix.package }}