From ff10003c9e52885a89011c367f98a957d407419c Mon Sep 17 00:00:00 2001 From: Ian Sutherland Date: Mon, 21 Oct 2019 20:04:04 -0600 Subject: [PATCH] Add a GitHub Action that runs the build script --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 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 00000000000..7b94526e804 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +name: Build + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Install + run: yarn --no-progress --non-interactive --no-lockfile + - name: Build + run: yarn build