Skip to content

build(deps): bump @mui/material from 7.3.1 to 7.3.2 in /web #1472

build(deps): bump @mui/material from 7.3.1 to 7.3.2 in /web

build(deps): bump @mui/material from 7.3.1 to 7.3.2 in /web #1472

Workflow file for this run

name: Chatbot Web CI
permissions:
contents: read
on:
push:
branches:
- main
paths:
- '.github/workflows/web-ci.yml'
- 'web/**'
pull_request:
types:
- opened
- synchronize
paths:
- '.github/workflows/web-ci.yml'
- 'web/**'
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
jobs:
lint:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: lts/*
- name: Activate Corepack
run: corepack enable
- name: Install modules
run: yarn install --immutable
- name: lint
run: make lint
test:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: lts/*
- name: Activate Corepack
run: corepack enable
- name: Install modules
run: yarn install --immutable
- name: test
run: make test
build:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: lts/*
- name: Activate Corepack
run: corepack enable
- name: Install modules
run: yarn install --immutable
- name: Build project
run: yarn build