From a0bfe6ac9ae2dcd54951fba98e0e19bc16ad3cda Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 13 Nov 2020 10:07:37 -0800 Subject: [PATCH] Verify the admin web app builds --- web/.github/workflows/build-next.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 web/.github/workflows/build-next.yml diff --git a/web/.github/workflows/build-next.yml b/web/.github/workflows/build-next.yml new file mode 100644 index 000000000..d35c03938 --- /dev/null +++ b/web/.github/workflows/build-next.yml @@ -0,0 +1,18 @@ +name: Build admin app +on: + push: + branches: + - master + pull_request: + branches: master + +jobs: + run: + name: npm run build + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v2 + + - name: Install dependencies + run: npm install && npm run build \ No newline at end of file