Skip to content

Bump vite from 5.4.6 to 5.4.7 #380

Bump vite from 5.4.6 to 5.4.7

Bump vite from 5.4.6 to 5.4.7 #380

Workflow file for this run

name: CI Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
CI: true
working-directory: .
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- working-directory: ${{ env.working-directory }}
run: yarn install --immutable
- name: Test
working-directory: ${{ env.working-directory }}
run: yarn test
- name: Build
working-directory: ${{ env.working-directory }}
run: yarn run build