From 91b1a96b4831754347f3f57986873424f27875d4 Mon Sep 17 00:00:00 2001 From: chapterjason Date: Wed, 27 Jan 2021 21:09:13 +0100 Subject: [PATCH] Add workflow to verify the plugin was build --- .github/workflows/verify-build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/verify-build.yaml diff --git a/.github/workflows/verify-build.yaml b/.github/workflows/verify-build.yaml new file mode 100644 index 0000000..53abd87 --- /dev/null +++ b/.github/workflows/verify-build.yaml @@ -0,0 +1,18 @@ +name: Symfony UX - Verify build + +on: [push, pull_request] + +jobs: + verify: + name: Check For Uncomitted Changes + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build + run: | + yarn install + yarn run build + - name: Check Git Status + run: | + status="$(git status --short)" + [ -z "$status" ]