2020-01-31 15:25:53 +01:00
|
|
|
name: Budibase CI
|
|
|
|
|
2023-04-20 20:30:48 +02:00
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull request,
|
|
|
|
# but only for the master branch
|
|
|
|
push:
|
2020-01-31 15:25:53 +01:00
|
|
|
branches:
|
|
|
|
- master
|
2023-04-20 20:30:48 +02:00
|
|
|
- develop
|
|
|
|
pull_request:
|
2020-01-31 15:25:53 +01:00
|
|
|
branches:
|
|
|
|
- master
|
2023-02-27 14:42:51 +01:00
|
|
|
- develop
|
2023-04-20 20:30:48 +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}}
|
2023-06-01 16:07:17 +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:
|
2023-05-17 15:47:33 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
- name: Use Node.js 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
|
|
|
node-version: 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
cache: "yarn"
|
2023-04-20 20:30:48 +02:00
|
|
|
- run: yarn
|
|
|
|
- run: yarn lint
|
2023-02-21 18:13:24 +01:00
|
|
|
|
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:
|
2023-05-17 15:47:33 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-02-21 18:13:24 +01:00
|
|
|
- name: Use Node.js 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-02-21 18:13:24 +01:00
|
|
|
with:
|
|
|
|
node-version: 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
cache: "yarn"
|
2023-02-21 18:13:24 +01:00
|
|
|
- run: yarn
|
2023-05-26 13:54:10 +02:00
|
|
|
# Run build all the projects
|
|
|
|
- run: yarn build
|
|
|
|
# Check the types of the projects built via esbuild
|
|
|
|
- run: yarn check:types
|
2023-02-21 18:13:24 +01:00
|
|
|
|
2023-05-23 09:30:35 +02:00
|
|
|
test-libraries:
|
2023-02-21 18:13:24 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-17 15:47:33 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:15:20 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-02-21 18:13:24 +01:00
|
|
|
- name: Use Node.js 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-02-21 18:13:24 +01:00
|
|
|
with:
|
|
|
|
node-version: 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
cache: "yarn"
|
2023-02-21 18:13:24 +01:00
|
|
|
- run: yarn
|
2023-05-22 16:38:36 +02:00
|
|
|
- run: yarn test --ignore=@budibase/worker --ignore=@budibase/server --ignore=@budibase/pro
|
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-05-23 09:30:35 +02:00
|
|
|
test-services:
|
2023-04-18 13:27:12 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-17 15:47:33 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-04-18 13:27:12 +02:00
|
|
|
- name: Use Node.js 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-18 13:27:12 +02:00
|
|
|
with:
|
|
|
|
node-version: 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
cache: "yarn"
|
2023-04-18 13:27:12 +02:00
|
|
|
- run: yarn
|
2023-05-23 09:30:35 +02:00
|
|
|
- run: yarn test --scope=@budibase/worker --scope=@budibase/server
|
2023-05-22 16:30:23 +02:00
|
|
|
- uses: codecov/codecov-action@v3
|
|
|
|
with:
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN || github.token }} # not required for public repos
|
2023-05-22 16:30:23 +02:00
|
|
|
name: codecov-umbrella
|
|
|
|
verbose: true
|
2023-04-18 13:27:12 +02:00
|
|
|
|
2023-05-22 16:38:36 +02:00
|
|
|
test-pro:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-05-22 16:38:36 +02:00
|
|
|
- name: Use Node.js 14.x
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 14.x
|
|
|
|
cache: "yarn"
|
|
|
|
- run: yarn
|
|
|
|
- run: yarn test --scope=@budibase/pro
|
|
|
|
|
2023-04-05 16:33:56 +02:00
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-17 15:47:33 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-04-05 16:33:56 +02:00
|
|
|
- name: Use Node.js 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-05 16:33:56 +02:00
|
|
|
with:
|
|
|
|
node-version: 14.x
|
2023-05-17 11:04:46 +02:00
|
|
|
cache: "yarn"
|
2023-05-17 11:17:50 +02:00
|
|
|
- run: yarn
|
2023-05-17 11:22:46 +02:00
|
|
|
- run: yarn build
|
2023-05-17 11:59:14 +02:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2023-04-05 16:33:56 +02:00
|
|
|
cd qa-core
|
|
|
|
yarn setup
|
|
|
|
yarn test:ci
|
|
|
|
env:
|
|
|
|
BB_ADMIN_USER_EMAIL: admin
|
2023-04-11 18:16:04 +02:00
|
|
|
BB_ADMIN_USER_PASSWORD: admin
|
2023-04-20 20:30:48 +02:00
|
|
|
|
|
|
|
check-pro-submodule:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-05-17 15:47:33 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-04-20 20:30:48 +02:00
|
|
|
fetch-depth: 0
|
|
|
|
- name: Check submodule
|
|
|
|
run: |
|
|
|
|
cd packages/pro
|
|
|
|
git fetch
|
|
|
|
if ! git merge-base --is-ancestor $(git log -n 1 --pretty=format:%H) origin/develop; then
|
|
|
|
echo "Current commit has not been merged to develop"
|
|
|
|
echo "Refer to the pro repo to merge your changes: https://github.com/Budibase/budibase-pro/blob/develop/docs/getting_started.md"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "All good, the submodule had been merged!"
|
|
|
|
fi
|