Skip to content

build(deps-dev): Bump vite from 5.3.4 to 5.3.6 #38

build(deps-dev): Bump vite from 5.3.4 to 5.3.6

build(deps-dev): Bump vite from 5.3.4 to 5.3.6 #38

Workflow file for this run

name: CI Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20, 22 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Setup Yarn
run: |
corepack enable
yarn install --immutable
- name: Lint
run: yarn lint
- name: Test
run: yarn test:coverage
- name: Build
run: yarn build