1
0
Fork 0
mirror of synced 2024-07-31 02:48:00 +12:00
budibase/.github/workflows/budibase_ci.yml

107 lines
2.6 KiB
YAML
Raw Normal View History

2020-02-01 03:25:53 +13:00
name: Budibase CI
2023-04-12 04:16:04 +12:00
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
2023-04-12 04:16:04 +12:00
- develop
pull_request:
2020-02-01 03:25:53 +13:00
branches:
- master
- develop
2023-04-12 04:16:04 +12:00
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-04-12 04:16:04 +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-04-12 04:16:04 +12:00
- 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-02-01 03:25:53 +13:00
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2023-04-12 21:27:10 +12:00
with:
submodules: true
2023-04-12 21:35:58 +12:00
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn
- run: yarn bootstrap
- run: yarn build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2023-04-12 21:27:10 +12:00
with:
submodules: true
2023-04-12 21:35:58 +12:00
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn
- run: yarn bootstrap
- run: yarn test
- 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
integration-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2023-04-12 21:27:10 +12:00
with:
submodules: true
2023-04-12 21:35:58 +12:00
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: yarn && yarn bootstrap && yarn build
- 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
2023-04-18 06:46:13 +12:00
check-pro-submodule:
2023-04-18 07:01:20 +12:00
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Check submodule
2023-04-18 06:59:01 +12:00
run: |
cd packages/pro
2023-04-18 07:45:30 +12:00
echo ${{ github.head_ref }}
2023-04-18 07:49:48 +12:00
echo $github.head_ref
2023-04-18 07:45:30 +12:00
if ! git branch --contains ${{ github.head_ref }} | grep -q chore/pro_as_submodule; then
2023-04-18 07:08:53 +12:00
echo "Current commit is not part of main branch"
2023-04-18 06:59:01 +12:00
exit 1
2023-04-18 07:08:53 +12:00
else
echo "All good, the submodule has been merged!"
2023-04-18 06:59:01 +12:00
fi