Skip to content

chore(deps-dev): bump typescript-eslint from 7.12.0 to 8.22.0 #459

chore(deps-dev): bump typescript-eslint from 7.12.0 to 8.22.0

chore(deps-dev): bump typescript-eslint from 7.12.0 to 8.22.0 #459

Workflow file for this run

name: CI
on:
pull_request:
branches: [develop]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ws: [www, tenantv3, owner, watermark]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build ${{ matrix.ws }}
run: pnpm --filter ${{ matrix.ws }} build
- name: Run unit tests
if: ${{ matrix.ws == 'www' || matrix.ws == 'tenantv3' || matrix.ws == 'owner' }}
run: pnpm --filter ${{ matrix.ws }} test:unit