Skip to content

Bump react-dom from 19.2.4 to 19.2.5 in /frontend #14

Bump react-dom from 19.2.4 to 19.2.5 in /frontend

Bump react-dom from 19.2.4 to 19.2.5 in /frontend #14

Workflow file for this run

name: Frontend CI
on:
pull_request:
push:
branches:
- main
jobs:
build-and-lint:
name: Build and Lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run build
run: npm run build