From 03f76babd8e21f5defa9440cfb1d00795e320f60 Mon Sep 17 00:00:00 2001 From: tuyennn Date: Wed, 5 Jul 2023 14:13:49 +0700 Subject: [PATCH] Run Magento Coding Standard in GitHub Action --- .github/workflows /coding-standard.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows /coding-standard.yml diff --git a/.github/workflows /coding-standard.yml b/.github/workflows /coding-standard.yml new file mode 100644 index 0000000..117ae58 --- /dev/null +++ b/.github/workflows /coding-standard.yml @@ -0,0 +1,14 @@ +name: ExtDN M2 Coding Standard +on: + push: + branches: + - master + pull_request: + +jobs: + static: + name: M2 Coding Standard + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: extdn/github-actions-m2/magento-coding-standard@master