Skip to content

Bump vite from 6.0.7 to 6.0.9 #103

Bump vite from 6.0.7 to 6.0.9

Bump vite from 6.0.7 to 6.0.9 #103

Workflow file for this run

# This workflow will do a clean install of node dependencies and run tests
name: CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Restore node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- run: yarn install
- run: yarn test --watch=false