Skip to content

build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 #943

build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5

build(deps-dev): bump ts-jest from 29.2.4 to 29.2.5 #943

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js v18
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn --pure-lockfile --prefer-offline
- name: Lint
run: yarn lint:ci
- name: Unit test
run: yarn test:ci
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}