Skip to content

chore(deps-dev): bump the typescript-eslint group with 2 updates #371

chore(deps-dev): bump the typescript-eslint group with 2 updates

chore(deps-dev): bump the typescript-eslint group with 2 updates #371

Workflow file for this run

name: Test (Jest)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
# checkout
- name: Checkout repository code
uses: actions/checkout@v4
# install
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8.7.4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
# test
- name: Run tests
run: pnpm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3