Skip to content

build(deps-dev): bump vitest from 3.0.4 to 3.0.5 in /web #802

build(deps-dev): bump vitest from 3.0.4 to 3.0.5 in /web

build(deps-dev): bump vitest from 3.0.4 to 3.0.5 in /web #802

Workflow file for this run

name: Chatbot Web CI
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@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install modules
run: yarn
- name: lint
run: make lint
test:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install modules
run: yarn
- name: test
run: make test