Skip to content

build(deps-dev): Bump js-yaml from 4.3.0 to 4.3.1 in /services/tenant-ui/frontend #1986

build(deps-dev): Bump js-yaml from 4.3.0 to 4.3.1 in /services/tenant-ui/frontend

build(deps-dev): Bump js-yaml from 4.3.0 to 4.3.1 in /services/tenant-ui/frontend #1986

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build and Test Tenant UI
on:
pull_request:
branches: ["main"]
paths:
- 'services/tenant-ui/**'
jobs:
backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./services/tenant-ui
strategy:
matrix:
node-version: [24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: ./services/tenant-ui/package-lock.json
- run: npm ci
- run: npm run build --if-present
- run: npm test
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./services/tenant-ui/frontend
strategy:
matrix:
node-version: [24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: ./services/tenant-ui/frontend/package-lock.json
- run: npm ci
- run: npm run build --if-present
- run: npm test