1
0
Fork 0
mirror of synced 2024-05-19 03:43:08 +12:00
budibase/.github/workflows/budibase_ci.yml

69 lines
1.5 KiB
YAML
Raw Normal View History

2020-02-01 03:25:53 +13: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 23:49:54 +13:00
- develop
2020-02-01 03:25:53 +13:00
pull_request:
branches:
- master
2021-02-12 23:49:54 +13:00
- develop
- release
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}}
2022-04-22 09:20:38 +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:
build:
runs-on: ubuntu-latest
2020-02-01 03:25:53 +13:00
2022-09-25 00:17:21 +12:00
services:
couchdb:
image: ibmcom/couchdb3
env:
2022-09-26 11:43:37 +13:00
COUCHDB_PASSWORD: budibase
2022-09-25 00:17:21 +12:00
COUCHDB_USER: budibase
ports:
- 4567:5984
2020-02-01 03:25:53 +13:00
strategy:
matrix:
node-version: [14.x]
2020-02-01 03:25:53 +13:00
steps:
- uses: actions/checkout@v2
2022-04-14 08:42:09 +12:00
2022-04-21 03:11:06 +12:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
2022-04-22 08:55:16 +12:00
- name: Install Pro
run: yarn install:pro $BRANCH $BASE_BRANCH
2020-02-01 03:25:53 +13:00
- run: yarn
2020-02-26 05:51:40 +13:00
- run: yarn bootstrap
- run: yarn lint
2020-02-01 03:25:53 +13:00
- run: yarn build
- run: yarn test
env:
CI: true
name: Budibase CI
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./packages/server/coverage/clover.xml,./packages/worker/coverage/clover.xml,./packages/backend-core/coverage/clover.xml
name: codecov-umbrella
verbose: true
2021-12-22 01:06:31 +13:00
- name: QA Core Integration Tests
run: |
2022-09-06 20:08:49 +12:00
cd qa-core
yarn
yarn api:test:ci