From 64f3ae8a477f96c04652f788138ba150aacc91bd Mon Sep 17 00:00:00 2001 From: ludeeus Date: Tue, 5 Nov 2019 18:46:34 +0100 Subject: [PATCH] Adds build action --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..0acc48ee --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: "Build" + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + name: Test build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build + run: | + npm install + npm run build \ No newline at end of file