From a2e38048be46b70a0fe88cff4ddf241f63ff40e9 Mon Sep 17 00:00:00 2001 From: Tom Keller <1083460+kellertk@users.noreply.github.com> Date: Fri, 15 Aug 2025 15:24:50 -0700 Subject: [PATCH] chore: create tests-integ.yml --- .github/workflows/tests-integ.yml | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/tests-integ.yml diff --git a/.github/workflows/tests-integ.yml b/.github/workflows/tests-integ.yml new file mode 100644 index 0000000..5ca3b93 --- /dev/null +++ b/.github/workflows/tests-integ.yml @@ -0,0 +1,33 @@ +name: Run integration tests + +on: + pull_request: + workflow_dispatch: + +jobs: + package_and_test: + name: Package dist files + runs-on: ubuntu-latest + permissions: + id-token: write + contents: read + steps: + - name: Checkout + uses: actions/checkout@v5 + with: + fetch-depth: 0 + ref: ${{ github.ref_name }} + persist-credentials: false + - name: Package + run: | + npm ci + npm run package + - name: Integation tests + uses: ./ + with: + aws-region: us-west-2 + role-to-assume: arn:aws:iam::206735643321:role/CAWSC-integ-role + role-session-name: IntegTestCAWSC + - name: Get caller identity + run: | + aws sts get-caller-identity