From 43b92017ec3eb9c4c1a13b4510f8ea126b9e482c Mon Sep 17 00:00:00 2001 From: Christopher Dro Date: Thu, 1 Oct 2020 10:00:51 -0500 Subject: [PATCH] Create base.yml --- .github/workflows/base.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/base.yml diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml new file mode 100644 index 0000000000..02757d265a --- /dev/null +++ b/.github/workflows/base.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Yarn + run: yarn install + + - name: Run a multi-line script + run: yarn ci