Skip to content

Merge branch 'finos:main' into main #8

Merge branch 'finos:main' into main

Merge branch 'finos:main' into main #8

Workflow file for this run

name: "Front End CI Build"
on: push
jobs:
build_vuu_ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
# Enable node module caching only when yarn.lock is available
- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: yarn-deps-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-deps-${{ hashFiles('yarn.lock') }}
- run: cd ./vuu-ui && yarn
- run: cd ./vuu-ui && yarn build