2020-01-31 15:25:53 +01:00
|
|
|
name: Budibase CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull request,
|
|
|
|
# but only for the master branch
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-02-12 11:49:54 +01:00
|
|
|
- develop
|
2020-01-31 15:25:53 +01:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-02-12 11:49:54 +01:00
|
|
|
- develop
|
2022-05-03 14:27:22 +02:00
|
|
|
workflow_dispatch:
|
2020-01-31 15:25:53 +01:00
|
|
|
|
2022-04-13 23:04:28 +02:00
|
|
|
env:
|
2022-04-20 17:21:05 +02:00
|
|
|
BRANCH: ${{ github.event.pull_request.head.ref }}
|
2022-04-21 23:12:57 +02:00
|
|
|
BASE_BRANCH: ${{ github.event.pull_request.base.ref}}
|
2022-04-21 23:20:38 +02:00
|
|
|
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
2022-04-13 23:04:28 +02:00
|
|
|
|
2020-01-31 15:25:53 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
2020-05-14 22:48:02 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-01-31 15:25:53 +01:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-17 20:39:08 +01:00
|
|
|
node-version: [14.x]
|
2020-01-31 15:25:53 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-04-13 22:42:09 +02:00
|
|
|
|
2022-04-20 17:11:06 +02:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
2022-04-21 22:55:16 +02:00
|
|
|
- name: Install Pro
|
2022-04-21 23:12:57 +02:00
|
|
|
run: yarn install:pro $BRANCH $BASE_BRANCH
|
2020-05-14 22:18:36 +02:00
|
|
|
|
2020-01-31 15:25:53 +01:00
|
|
|
- run: yarn
|
2020-02-25 17:51:40 +01:00
|
|
|
- run: yarn bootstrap
|
2021-06-25 16:54:41 +02:00
|
|
|
- run: yarn lint
|
2020-01-31 15:25:53 +01:00
|
|
|
- run: yarn build
|
2020-05-14 22:48:02 +02:00
|
|
|
- run: yarn test
|
2020-01-31 15:25:53 +01:00
|
|
|
env:
|
|
|
|
CI: true
|
2020-08-05 16:18:28 +02:00
|
|
|
name: Budibase CI
|
2021-03-02 19:22:35 +01:00
|
|
|
- uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
|
|
|
files: ./packages/server/coverage/clover.xml
|
|
|
|
name: codecov-umbrella
|
|
|
|
verbose: true
|
2021-12-21 13:06:31 +01:00
|
|
|
|
|
|
|
# TODO: parallelise this
|
2022-02-17 21:10:19 +01:00
|
|
|
- name: Cypress run
|
|
|
|
uses: cypress-io/github-action@v2
|
|
|
|
with:
|
|
|
|
install: false
|
|
|
|
command: yarn test:e2e:ci
|