1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00
budibase/.github/workflows/budibase_ci.yml

133 lines
3.5 KiB
YAML
Raw Normal View History

2020-02-01 03:25:53 +13:00
name: Budibase CI
2023-06-20 23:51:57 +12:00
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
2020-02-01 03:25:53 +13:00
branches:
- master
- develop
pull_request:
2020-02-01 03:25:53 +13:00
branches:
- master
- develop
workflow_dispatch:
2020-02-01 03:25:53 +13:00
2022-04-14 09:04:28 +12:00
env:
2022-04-21 03:21:05 +12:00
BRANCH: ${{ github.event.pull_request.head.ref }}
BASE_BRANCH: ${{ github.event.pull_request.base.ref}}
2023-06-02 02:07:17 +12:00
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
2022-04-14 09:04:28 +12:00
2020-02-01 03:25:53 +13:00
jobs:
lint:
runs-on: ubuntu-latest
steps:
2023-05-18 01:47:33 +12:00
- uses: actions/checkout@v3
- name: Use Node.js 14.x
2023-05-17 21:04:46 +12:00
uses: actions/setup-node@v3
with:
node-version: 14.x
2023-05-17 21:04:46 +12:00
cache: "yarn"
- run: yarn
- run: yarn lint
2020-02-01 03:25:53 +13:00
build:
runs-on: ubuntu-latest
steps:
2023-05-18 01:47:33 +12:00
- uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
- name: Use Node.js 14.x
2023-05-17 21:04:46 +12:00
uses: actions/setup-node@v3
with:
node-version: 14.x
2023-05-17 21:04:46 +12:00
cache: "yarn"
- run: yarn
2023-05-26 23:54:10 +12:00
# Run build all the projects
- run: yarn build
# Check the types of the projects built via esbuild
- run: yarn check:types
2023-05-23 19:30:35 +12:00
test-libraries:
runs-on: ubuntu-latest
steps:
2023-05-18 01:47:33 +12:00
- uses: actions/checkout@v3
with:
submodules: true
2023-06-02 02:15:20 +12:00
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
- name: Use Node.js 14.x
2023-05-17 21:04:46 +12:00
uses: actions/setup-node@v3
with:
node-version: 14.x
2023-05-17 21:04:46 +12:00
cache: "yarn"
- run: yarn
2023-05-23 02:38:36 +12:00
- run: yarn test --ignore=@budibase/worker --ignore=@budibase/server --ignore=@budibase/pro
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
name: codecov-umbrella
verbose: true
2020-02-01 03:25:53 +13:00
2023-05-23 19:30:35 +12:00
test-services:
2023-04-18 23:27:12 +12:00
runs-on: ubuntu-latest
steps:
2023-05-18 01:47:33 +12:00
- uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
2023-04-18 23:27:12 +12:00
- name: Use Node.js 14.x
2023-05-17 21:04:46 +12:00
uses: actions/setup-node@v3
2023-04-18 23:27:12 +12:00
with:
node-version: 14.x
2023-05-17 21:04:46 +12:00
cache: "yarn"
2023-04-18 23:27:12 +12:00
- run: yarn
2023-05-23 19:30:35 +12:00
- run: yarn test --scope=@budibase/worker --scope=@budibase/server
2023-05-23 02:30:23 +12:00
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN || github.token }} # not required for public repos
2023-05-23 02:30:23 +12:00
name: codecov-umbrella
verbose: true
2023-04-18 23:27:12 +12:00
2023-05-23 02:38:36 +12:00
test-pro:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
2023-05-23 02:38:36 +12: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
integration-test:
runs-on: ubuntu-latest
steps:
2023-05-18 01:47:33 +12:00
- uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
- name: Use Node.js 14.x
2023-05-17 21:04:46 +12:00
uses: actions/setup-node@v3
with:
node-version: 14.x
2023-05-17 21:04:46 +12:00
cache: "yarn"
2023-05-17 21:17:50 +12:00
- run: yarn
2023-05-17 21:22:46 +12:00
- run: yarn build
2023-05-17 21:59:14 +12:00
- name: Run tests
run: |
cd qa-core
yarn setup
yarn test:ci
env:
BB_ADMIN_USER_EMAIL: admin
2023-04-12 04:16:04 +12:00
BB_ADMIN_USER_PASSWORD: admin