Skip to content

fix: 회원 목록 조회 기능이 정상적으로 동작하도록 수정 (#90) #101

fix: 회원 목록 조회 기능이 정상적으로 동작하도록 수정 (#90)

fix: 회원 목록 조회 기능이 정상적으로 동작하도록 수정 (#90) #101

Workflow file for this run

name: Test coverage for pull request
on:
push:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Prepare yarn
run: corepack enable && corepack prepare [email protected] --activate
- name: Install dependencies
run: yarn install --immutable
- name: Run tests
run: yarn test:cov --maxWorkers=100%
- name: Coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './coverage/lcov.info'