2022-10-20 13:30:44 +00:00
|
|
|
name: "Build: Frontend All Bundles"
|
2022-07-13 20:40:58 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2022-09-20 17:39:49 +00:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
semver:
|
|
|
|
required: true
|
|
|
|
type: string
|
2022-07-13 20:40:58 +00:00
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
paths: [ "frontend" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
paths: [ "frontend" ]
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: 'Checkout'
|
2023-09-11 16:00:32 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-07-13 20:40:58 +00:00
|
|
|
- name: 'Setup node'
|
2023-10-26 14:22:20 +00:00
|
|
|
uses: actions/setup-node@v4
|
2022-07-13 20:40:58 +00:00
|
|
|
with:
|
2022-08-30 19:55:53 +00:00
|
|
|
node-version: 16.17.0
|
2022-07-13 20:40:58 +00:00
|
|
|
cache: npm
|
|
|
|
cache-dependency-path: frontend/package-lock.json
|
|
|
|
- name: 'Install NPM Dependencies'
|
|
|
|
run: |
|
|
|
|
cd frontend
|
2022-09-13 17:10:20 +00:00
|
|
|
npm install
|
2022-08-30 19:55:53 +00:00
|
|
|
|
2022-07-13 21:00:17 +00:00
|
|
|
- name: 'Test'
|
2022-07-13 20:40:58 +00:00
|
|
|
run: |
|
|
|
|
cd frontend
|
|
|
|
npm test
|
2022-07-13 21:00:17 +00:00
|
|
|
- name: 'Build'
|
|
|
|
run: |
|
2023-05-29 15:58:12 +00:00
|
|
|
export NODE_OPTIONS="--max-old-space-size=4096"
|
2022-07-13 21:00:17 +00:00
|
|
|
cd frontend
|
|
|
|
npm run build
|
2022-10-20 18:06:16 +00:00
|
|
|
- name: 'Archive Web Basic Build Results'
|
2023-09-07 08:53:07 +00:00
|
|
|
uses: actions/upload-artifact@v3.1.3
|
2022-07-13 21:00:17 +00:00
|
|
|
with:
|
2022-10-22 14:43:32 +00:00
|
|
|
name: web-main-js
|
|
|
|
path: frontend/static/frontend/main.js
|
2023-05-29 15:58:12 +00:00
|
|
|
- name: 'Archive Web Basic SelfhostedBuild Results'
|
2023-09-07 08:53:07 +00:00
|
|
|
uses: actions/upload-artifact@v3.1.3
|
2023-05-29 15:58:12 +00:00
|
|
|
with:
|
|
|
|
name: web-basic-selfhosted-js
|
|
|
|
path: frontend/static/frontend/basic.selfhosted.js
|
2022-10-20 18:06:16 +00:00
|
|
|
- name: 'Archive Web PRO Build Results'
|
2023-09-07 08:53:07 +00:00
|
|
|
uses: actions/upload-artifact@v3.1.3
|
2022-10-20 18:06:16 +00:00
|
|
|
with:
|
|
|
|
name: web-pro-js
|
|
|
|
path: frontend/static/frontend/pro.js
|
2023-05-29 15:58:12 +00:00
|
|
|
- name: 'Archive Web PRO SelhostedBuild Results'
|
2023-09-07 08:53:07 +00:00
|
|
|
uses: actions/upload-artifact@v3.1.3
|
2023-05-29 15:58:12 +00:00
|
|
|
with:
|
|
|
|
name: web-pro-selfhosted-js
|
|
|
|
path: frontend/static/frontend/pro.selfhosted.js
|
2022-10-04 16:00:37 +00:00
|
|
|
- name: 'Archive Mobile Build Results'
|
2023-09-07 08:53:07 +00:00
|
|
|
uses: actions/upload-artifact@v3.1.3
|
2022-09-28 14:51:29 +00:00
|
|
|
with:
|
2022-10-04 16:00:37 +00:00
|
|
|
name: mobile-web.bundle
|
|
|
|
path: mobile/html/Web.bundle
|
2022-09-20 17:39:49 +00:00
|
|
|
|
2022-09-22 23:55:11 +00:00
|
|
|
# Invoke pre-release image build if this was not a tag push
|
|
|
|
# Docker images tagged only with short commit hash
|
2022-09-20 17:39:49 +00:00
|
|
|
- name: 'Invoke Coodinator Image CI'
|
2022-09-22 23:55:11 +00:00
|
|
|
if: inputs.semver == ''
|
2023-05-02 23:54:38 +00:00
|
|
|
uses: benc-uk/workflow-dispatch@v121
|
2022-07-16 11:15:00 +00:00
|
|
|
with:
|
2022-10-22 14:43:32 +00:00
|
|
|
workflow: 'Docker: Coordinator'
|
2022-08-22 23:22:34 +00:00
|
|
|
token: ${{ secrets.PERSONAL_TOKEN }}
|
|
|
|
- name: 'Invoke Client App Build CI/CD workflow'
|
2022-09-22 23:55:11 +00:00
|
|
|
if: inputs.semver == ''
|
2023-05-02 23:54:38 +00:00
|
|
|
uses: benc-uk/workflow-dispatch@v121
|
2022-08-22 23:22:34 +00:00
|
|
|
with:
|
2022-10-22 14:43:32 +00:00
|
|
|
workflow: 'Docker: Client'
|
2022-07-16 11:15:00 +00:00
|
|
|
token: ${{ secrets.PERSONAL_TOKEN }}
|