Skip to content

Bump vite from 7.0.6 to 7.1.12 #279

Bump vite from 7.0.6 to 7.1.12

Bump vite from 7.0.6 to 7.1.12 #279

Workflow file for this run

---
name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
env:
NODE_VERSION: 22.x
jobs:
tests:
runs-on: ubuntu-latest
name: Tests
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
**/node_modules
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-cache-
- run: yarn install --immutable
- name: tests
run: yarn test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}