Skip to content

chore(deps): bump @mui/x-date-pickers from 7.11.1 to 7.12.0 in /frontend #34

chore(deps): bump @mui/x-date-pickers from 7.11.1 to 7.12.0 in /frontend

chore(deps): bump @mui/x-date-pickers from 7.11.1 to 7.12.0 in /frontend #34

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Front-End CI/CD
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x
cache: "yarn"
- name: Install the dependencies
run: |
yarn install
yarn global add jscpd
- name: Lint
run: |
jscpd --exitCode 1 src/
yarn lint
- name: Test
run: yarn test