Skip to content

deps(dev): bump @vitejs/plugin-react from 4.3.2 to 4.3.4 #35

deps(dev): bump @vitejs/plugin-react from 4.3.2 to 4.3.4

deps(dev): bump @vitejs/plugin-react from 4.3.2 to 4.3.4 #35

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Build the project
run: npm run build
- name: Test the project
run: npm run test