Skip to content

chore(deps): bump react-router-dom from 7.1.1 to 7.1.3 in /client #9

chore(deps): bump react-router-dom from 7.1.1 to 7.1.3 in /client

chore(deps): bump react-router-dom from 7.1.1 to 7.1.3 in /client #9

Workflow file for this run

name: Client - Build
on:
pull_request:
branches:
- develop
workflow_dispatch:
jobs:
build:
name: Build Application
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: |
cd client
npm ci --cache .npm --prefer-offline
- name: Run Build
run: |
cd client
npm run build
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: client-app
path: app