Skip to content

chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 8.7.0 to 8.10.0 in /services/tenant-ui #1262

chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 8.7.0 to 8.10.0 in /services/tenant-ui

chore(deps-dev): Bump @typescript-eslint/eslint-plugin from 8.7.0 to 8.10.0 in /services/tenant-ui #1262

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: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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