1
0
Fork 0
mirror of synced 2024-06-02 10:34:40 +12:00
budibase/.github/workflows/budibase_ci.yml

54 lines
1.4 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
pull_request:
branches:
- master
jobs:
build:
2020-05-15 08:24:34 +12:00
runs-on: ${{ matrix.os }}
2020-02-01 03:25:53 +13:00
strategy:
matrix:
2020-05-15 08:24:34 +12:00
os: [macos-latest, ubuntu-latest, windows-latest]
2020-02-01 03:25:53 +13:00
node-version: [10.x]
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
# - run: yarn lint
2020-02-26 05:51:40 +13:00
- run: yarn bootstrap
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
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
package_root: packages/server
# mac_certs: ${{ secrets.mac_certs }}
# mac_certs_password: ${{ secrets.mac_certs_password }}
# windows_certs: ${{ secrets.windows_certs }}
# windows_certs_password: ${{ secrets.windows_certs_password }}
# snapcraft_token: ${{ secrets.snapcraft_token }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}