robosats/.github/workflows/frontend-build.yml

61 lines
1.5 KiB
YAML
Raw Normal View History

2022-07-13 21:00:17 +00:00
name: Frontend Test & Build
2022-07-13 20:40:58 +00:00
on:
workflow_dispatch:
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
2022-07-13 20:40:58 +00:00
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: 'Install NPM Dependencies'
run: |
cd frontend
npm install --legacy-peer-deps
# npm force install with legacy-peer-deps until new @nivo/core and @nivo/line support react 18
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: |
cd frontend
npm run build
- name: 'Archive Built Results'
uses: actions/upload-artifact@v3
with:
name: main-js
2022-07-16 11:15:00 +00:00
path: frontend/static/frontend/main.js
2022-08-22 23:22:34 +00:00
- name: 'Invoke Backend Build CI workflow'
2022-07-16 11:15:00 +00:00
uses: benc-uk/workflow-dispatch@v1
with:
2022-08-22 23:22:34 +00:00
workflow: 'Backend Image CI'
token: ${{ secrets.PERSONAL_TOKEN }}
- name: 'Invoke Client App Build CI/CD workflow'
uses: benc-uk/workflow-dispatch@v1
with:
workflow: 'Client App Image CI/CD'
2022-07-16 11:15:00 +00:00
token: ${{ secrets.PERSONAL_TOKEN }}