From 18bce8bf0305761842fb5ec3d0663bb763e0f8fe Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Fri, 31 Jan 2020 14:25:53 +0000 Subject: [PATCH] ci setup complete --- .github/workflows/budibase_ci.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/budibase_ci.yml diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml new file mode 100644 index 0000000000..a9bad4639e --- /dev/null +++ b/.github/workflows/budibase_ci.yml @@ -0,0 +1,35 @@ +name: Budibase CI + +on: + # Trigger the workflow on push or pull request, + # but only for the master branch + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn + - run: yarn lint + - run: yarn build + - run: yarn test + env: + CI: true + name: Budibase CI +