Skip to content

chore(deps): bump webpack from 5.88.1 to 5.89.0 in /frontend (#799) #1946

chore(deps): bump webpack from 5.88.1 to 5.89.0 in /frontend (#799)

chore(deps): bump webpack from 5.88.1 to 5.89.0 in /frontend (#799) #1946

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