Skip to content

Bump vite from 6.0.7 to 6.0.9 in the npm_and_yarn group across 1 directory #58

Bump vite from 6.0.7 to 6.0.9 in the npm_and_yarn group across 1 directory

Bump vite from 6.0.7 to 6.0.9 in the npm_and_yarn group across 1 directory #58

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn lint