Skip to content

build(deps-dev): bump vitest from 0.25.3 to 2.1.8 #5272

build(deps-dev): bump vitest from 0.25.3 to 2.1.8

build(deps-dev): bump vitest from 0.25.3 to 2.1.8 #5272

Workflow file for this run

name: Testing (Pull Request)
on: pull_request
jobs:
test:
name: Unit tests
runs-on: ubuntu-20.04
steps:
- name: set up node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: check out code
uses: actions/checkout@v4
- name: rename config file
run: mv src/common/utils/clientConfig.sample.ts src/common/utils/clientConfig.ts
- name: install
run: yarn install
- name: unit tests
run: yarn test-coverage
env:
CI: true
- name: upload test coverage to codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}