Skip to content

Bump vite from 5.0.12 to 5.2.8 #65

Bump vite from 5.0.12 to 5.2.8

Bump vite from 5.0.12 to 5.2.8 #65

Workflow file for this run

name: Check
on:
push:
branches:
- "main"
pull_request:
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
- id: cache-node_modules
uses: actions/cache@v4
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package.json', 'package-lock.json') }}
- if: steps.cache-node_modules.outputs.cache-hit != 'true'
run: npm ci --no-audit
- run: npm run build
- run: npx tsd
- run: npx eslint --report-unused-disable-directives .
- run: npx prettier --check .