Skip to content

Resolve conflicts #1959

Resolve conflicts

Resolve conflicts #1959

Workflow file for this run

name: UI Build and Test
on:
pull_request:
push:
branches: [master]
jobs:
frontend-build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: npm ci, build
working-directory: ./frontend
run: |
yarn install --frozen-lockfile
yarn build --if-present
frontend-test:
needs: frontend-build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: yarn ci, build and test
working-directory: ./frontend
run: |
yarn install --frozen-lockfile
yarn test