From 83dfe38fbbb15b746a378ab2af5cfbeaa83fce9a Mon Sep 17 00:00:00 2001 From: Dan Grebb Date: Mon, 15 Jan 2024 04:52:10 -0500 Subject: [PATCH] ci: adds test check suite workflow (garris#1533) --- .github/workflows/test-check-backstop.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test-check-backstop.yml diff --git a/.github/workflows/test-check-backstop.yml b/.github/workflows/test-check-backstop.yml new file mode 100644 index 000000000..c3f8f942d --- /dev/null +++ b/.github/workflows/test-check-backstop.yml @@ -0,0 +1,24 @@ +name: Backstop Test Checks + +on: + workflow_dispatch: + workflow_call: + +permissions: + actions: write + checks: write + contents: write + pull-requests: write + +jobs: + sanity-test: + name: 🤪 Sanity Test Checks + uses: ./.github/workflows/sanity-test-checks.yml + + smoke-test: + name: 💨 Smoke Test Checks + uses: ./.github/workflows/smoke-test-checks.yml + + integration-test: + name: 🧩 Integration Test Check + uses: ./.github/workflows/integration-test-check.yml