Skip to content

Bump vite from 8.0.2 to 8.0.5 in the npm_and_yarn group across 1 directory #248

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

Bump vite from 8.0.2 to 8.0.5 in the npm_and_yarn group across 1 directory #248

Workflow file for this run

# This Continuous Integration (CI) pipeline lints, builds, and tests the code when a Pull Request is
# created or a commit is pushed to a Prod branch
name: CI
on:
push:
branches: ["main", "1.x.x"]
pull_request:
branches: ["main", "1.x.x"]
jobs:
continuous-integration:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Unit Tests
run: npm test