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
|
2023-02-27 14:42:51 +01:00
|
|
|
- develop
|
2022-05-03 15:18:18 +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:
|
2023-02-21 18:13:24 +01:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js 14.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- run: yarn
|
|
|
|
- run: yarn lint
|
|
|
|
|
2020-01-31 15:25:53 +01:00
|
|
|
build:
|
2020-05-14 22:48:02 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-02-21 18:13:24 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js 14.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- name: Install Pro
|
|
|
|
run: yarn install:pro $BRANCH $BASE_BRANCH
|
|
|
|
- run: yarn
|
|
|
|
- run: yarn bootstrap
|
|
|
|
- run: yarn build
|
|
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js 14.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- name: Install Pro
|
|
|
|
run: yarn install:pro $BRANCH $BASE_BRANCH
|
|
|
|
- run: yarn
|
|
|
|
- run: yarn bootstrap
|
2023-03-28 02:01:01 +02:00
|
|
|
- run: yarn test
|
2023-03-27 23:55:57 +02:00
|
|
|
- uses: codecov/codecov-action@v3
|
2023-02-21 18:13:24 +01:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
|
|
|
name: codecov-umbrella
|
|
|
|
verbose: true
|
2020-01-31 15:25:53 +01:00
|
|
|
|
2023-02-27 16:55:46 +01:00
|
|
|
test-pro:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js 14.x
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
- name: Install Pro
|
|
|
|
run: yarn install:pro $BRANCH $BASE_BRANCH
|
|
|
|
- run: yarn
|
|
|
|
- run: yarn bootstrap
|
|
|
|
- run: yarn test:pro
|
|
|
|
|
2023-03-31 23:37:54 +02:00
|
|
|
# integration-test:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
# services:
|
|
|
|
# couchdb:
|
|
|
|
# image: ibmcom/couchdb3
|
|
|
|
# env:
|
|
|
|
# COUCHDB_PASSWORD: budibase
|
|
|
|
# COUCHDB_USER: budibase
|
|
|
|
# ports:
|
|
|
|
# - 4567:5984
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/checkout@v2
|
|
|
|
# - name: Use Node.js 14.x
|
|
|
|
# uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 14.x
|
|
|
|
# - name: Install Pro
|
|
|
|
# run: yarn install:pro $BRANCH $BASE_BRANCH
|
|
|
|
# - run: yarn
|
|
|
|
# - run: yarn bootstrap
|
|
|
|
# - run: yarn build
|
|
|
|
# - run: |
|
|
|
|
# cd qa-core
|
|
|
|
# yarn
|
|
|
|
# yarn api:test:ci
|