Skip to content

Bump vite from 8.0.3 to 8.0.5 in the npm_and_yarn group across 1 directory #191

Bump vite from 8.0.3 to 8.0.5 in the npm_and_yarn group across 1 directory

Bump vite from 8.0.3 to 8.0.5 in the npm_and_yarn group across 1 directory #191

Workflow file for this run

name: Continues Integration
on:
pull_request:
push:
branches:
- main
tags:
- '*'
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Tests
run: npm test
- name: Build
run: npm run build