Skip to content

chore(deps-dev): bump vite from 4.5.1 to 4.5.3 #431

chore(deps-dev): bump vite from 4.5.1 to 4.5.3

chore(deps-dev): bump vite from 4.5.1 to 4.5.3 #431

Workflow file for this run

name: CI
on: [pull_request]
jobs:
test-build:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
- run: pnpm install
- run: pnpm test -- --coverage
- run: pnpm build
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}