From c9cb9c8619ac4069dd502c14388a11b08668a18e Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 1 Aug 2023 10:27:15 +0100 Subject: [PATCH] feat: NX based Unit Testing --- .github/workflows/unit-tests.yml | 13 +++++++++++++ supported-services.json | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 .github/workflows/unit-tests.yml create mode 100644 supported-services.json diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml new file mode 100644 index 000000000000..dd29dfcb9b02 --- /dev/null +++ b/.github/workflows/unit-tests.yml @@ -0,0 +1,13 @@ +name: Unit Tests +run-name: ${{ github.actor }} is running Unit Tests +on: + pull_request: + branches: + - 2.4-develop + +permissions: + contents: write + +jobs: + run-unit-tests: + uses: mage-os/infrastructure/.github/workflows/unit-tests.yml@main diff --git a/supported-services.json b/supported-services.json new file mode 100644 index 000000000000..db11fc5c6880 --- /dev/null +++ b/supported-services.json @@ -0,0 +1,8 @@ +{ + "services": { + "php": [ + 8.1, + 8.2 + ] + } +} \ No newline at end of file