From 29a7494d8ea864545612f1300970f3f80edb4698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Depriester?= Date: Mon, 14 Jun 2021 12:09:18 +0200 Subject: [PATCH] feat: add github actions for build process --- .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 0000000..ec7522e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +name: "Build" +on: + pull_request: + push: + + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: yarn install + - run: yarn build \ No newline at end of file