Skip to content

build(deps-dev): bump com.diffplug.spotless:spotless-maven-plugin from 3.9.0 to 3.10.1 in /backend #747

build(deps-dev): bump com.diffplug.spotless:spotless-maven-plugin from 3.9.0 to 3.10.1 in /backend

build(deps-dev): bump com.diffplug.spotless:spotless-maven-plugin from 3.9.0 to 3.10.1 in /backend #747

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- "frontend/**"
- ".github/workflows/frontend.yml"
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 18
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
working-directory: frontend
run: npm ci
# - name: Run ESLint
# working-directory: frontend
# run: npm run lint
- name: Check formatting with Prettier
working-directory: frontend
run: npm run prettier:check
- name: Build project
working-directory: frontend
run: npm run build