Skip to content

chore: add test coverage command #17

chore: add test coverage command

chore: add test coverage command #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
lint_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9.12.3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22.11.0
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm lint
- name: Check code format
run: pnpm format
- name: Run tests
run: pnpm test