Skip to content

chore(deps-dev): bump vite from 5.3.2 to 5.3.6 #559

chore(deps-dev): bump vite from 5.3.2 to 5.3.6

chore(deps-dev): bump vite from 5.3.2 to 5.3.6 #559

Workflow file for this run

name: Lint, Test & Coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
coverage:
runs-on: ubuntu-latest
concurrency: ci-test-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js with Yarn cache
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests