Skip to content

Bump vite from 5.0.12 to 5.0.13 #240

Bump vite from 5.0.12 to 5.0.13

Bump vite from 5.0.12 to 5.0.13 #240

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm install
- run: npm run build:prod
- run: npm run typecheck
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
with:
github-token: ${{ secrets.GITHUB_TOKEN }}