1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00
budibase/.github/workflows/budibase_ci.yml

45 lines
934 B
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
2020-02-01 03:25:53 +13:00
jobs:
build:
runs-on: ubuntu-latest
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
2020-02-01 03:25:53 +13:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- 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
2020-02-01 03:25:53 +13:00
env:
CI: true
name: Budibase CI
2021-03-03 07:22:35 +13:00
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./packages/server/coverage/clover.xml
name: codecov-umbrella
verbose: true
- run: yarn test:e2e:ci