From 594660bda3f68bf3cc748e2a92c45031613974e2 Mon Sep 17 00:00:00 2001 From: Ruben Romero Montes Date: Fri, 18 Jul 2025 12:30:42 +0200 Subject: [PATCH] chore(ci): add multi-arch integration tests Signed-off-by: Ruben Romero Montes --- .github/workflows/integration.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 0000000..af7a30f --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,20 @@ +--- +name: Integration + +on: + workflow_dispatch: + pull_request: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + call-shared: + uses: trustification/exhort-integration-tests/.github/workflows/integration.yml@main + with: + language: javascript + repo-url: ${{ github.event.pull_request.head.repo.full_name || github.repository }} + commit-sha: ${{ github.event.pull_request.head.sha || github.sha }}