2021-03-25 14:22:43 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-03-27 05:48:12 +00:00
|
|
|
branches: [development]
|
2021-03-25 14:22:43 +00:00
|
|
|
pull_request:
|
2021-03-27 05:48:12 +00:00
|
|
|
branches: [development]
|
2021-03-25 14:22:43 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Frontend:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2021-03-27 05:48:12 +00:00
|
|
|
UI_DIRECTORY: ./frontend
|
2021-03-25 14:22:43 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14.x]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-03-27 05:48:12 +00:00
|
|
|
- name: Cache node_modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: '${{ env.UI_DIRECTORY }}/node_modules'
|
|
|
|
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: ${{ runner.os }}-modules-
|
|
|
|
|
2021-03-25 14:22:43 +00:00
|
|
|
- name: Set up Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
2021-03-27 05:48:12 +00:00
|
|
|
working-directory: ${{ env.UI_DIRECTORY }}
|
2021-03-25 14:22:43 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
2021-03-27 05:48:12 +00:00
|
|
|
working-directory: ${{ env.UI_DIRECTORY }}
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: "ui"
|
|
|
|
path: "${{ env.UI_DIRECTORY }}/frontend/build"
|