mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 11:26:24 +00:00
1dea4e73b6
commit9c6d55cfc7
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Thu Oct 20 10:35:49 2022 -0700 Small fixes commit23d6c00ccb
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Thu Oct 20 06:12:42 2022 -0700 Refactor frontend commitb2c21d4a98
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Wed Oct 19 07:26:00 2022 -0700 Small fixes (more) commit78a8ab799d
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Wed Oct 19 02:11:03 2022 -0700 Try out to revert depth chart commitef73c980a8
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Tue Oct 18 11:43:37 2022 -0700 Small fixes commitfa3e60208f
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Tue Oct 18 09:43:03 2022 -0700 Add old UserGen and BottomBar to new main.tsx commit1e257d1924
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Tue Oct 18 04:01:53 2022 -0700 Add Maker and Book page to new main.tsx commit037d46ceef
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Mon Oct 17 08:54:55 2022 -0700 Add Main component WIP commite43b274c33
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Mon Oct 17 04:32:43 2022 -0700 App as functional component
80 lines
2.0 KiB
YAML
80 lines
2.0 KiB
YAML
name: "Build: Frontend All Bundles"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
semver:
|
|
required: true
|
|
type: string
|
|
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'
|
|
uses: actions/checkout@v3
|
|
- name: 'Setup node'
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.17.0
|
|
cache: npm
|
|
cache-dependency-path: frontend/package-lock.json
|
|
- name: 'Install NPM Dependencies'
|
|
run: |
|
|
cd frontend
|
|
npm install
|
|
|
|
- name: 'Test'
|
|
run: |
|
|
cd frontend
|
|
npm test
|
|
- name: 'Build'
|
|
run: |
|
|
cd frontend
|
|
npm run build
|
|
- name: 'Archive Web Basic Build Results'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: web-basic-js
|
|
path: frontend/static/frontend/basic.js
|
|
- name: 'Archive Web PRO Build Results'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: web-pro-js
|
|
path: frontend/static/frontend/pro.js
|
|
- name: 'Archive Mobile Build Results'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: mobile-web.bundle
|
|
path: mobile/html/Web.bundle
|
|
|
|
# Invoke pre-release image build if this was not a tag push
|
|
# Docker images tagged only with short commit hash
|
|
- name: 'Invoke Coodinator Image CI'
|
|
if: inputs.semver == ''
|
|
uses: benc-uk/workflow-dispatch@v1
|
|
with:
|
|
workflow: 'Coodinator Image CI'
|
|
token: ${{ secrets.PERSONAL_TOKEN }}
|
|
- name: 'Invoke Client App Build CI/CD workflow'
|
|
if: inputs.semver == ''
|
|
uses: benc-uk/workflow-dispatch@v1
|
|
with:
|
|
workflow: 'Client App Image CI/CD'
|
|
token: ${{ secrets.PERSONAL_TOKEN }} |