Skip to content

Bump react-router-dom from 6.23.1 to 6.24.0 in /app (#1150) #2539

Bump react-router-dom from 6.23.1 to 6.24.0 in /app (#1150)

Bump react-router-dom from 6.23.1 to 6.24.0 in /app (#1150) #2539

Workflow file for this run

name: TypeScript
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
REACT_APP_API_URL: https://api.example
jobs:
build_ts:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: "npm"
cache-dependency-path: ./app/package-lock.json
- run: npm ci
- run: npm run build
- run: npm run check
- run: npm run lint