From 421a7dda6936fd4042d3e9b372c1b9924d637507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Gasc=C3=B3n?= Date: Sun, 18 Feb 2024 16:27:52 +0100 Subject: [PATCH] feat: add integration tests pipeline --- .github/workflows/integration-tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/integration-tests.yml diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 0000000000..9af9f772be --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,17 @@ +name: Integration Tests + +on: + - pull_request + - push + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v1 + with: + token: "${{ secrets.GITHUB_TOKEN}}" + repository: ulisesgascon/express-examples + event-type: integration-tests + client-payload: '{"branch": "${{ github.head_ref || github.ref }}"}' \ No newline at end of file