Skip to content

build(deps-dev): bump @typescript-eslint/parser from 8.54.0 to 8.59.1 in /src/ui #2367

build(deps-dev): bump @typescript-eslint/parser from 8.54.0 to 8.59.1 in /src/ui

build(deps-dev): bump @typescript-eslint/parser from 8.54.0 to 8.59.1 in /src/ui #2367

Workflow file for this run

name: Build and test
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- uses: pnpm/action-setup@v5
name: Install pnpm
with:
version: 10
run_install: false
- name: Configure pnpm store path
run: pnpm config set store-dir ~/.pnpm-store
- name: Setup pnpm cache
uses: actions/cache@v5
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test backend
run: dotnet test -c Release --no-build --verbosity normal --filter "Category!=LongRunning"
- name: Install frontend dependencies
run: pnpm -C src/ui install --frozen-lockfile
- name: Cache Playwright browsers
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('src/ui/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install Playwright
run: pnpm -C src/ui exec playwright install --with-deps
- name: Test frontend
run: pnpm -C src/ui test