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