Skip to content

fix: 쿼리 인터페이스 대신 레포지토리를 사용하도록 수정 (#72) #69

fix: 쿼리 인터페이스 대신 레포지토리를 사용하도록 수정 (#72)

fix: 쿼리 인터페이스 대신 레포지토리를 사용하도록 수정 (#72) #69

Workflow file for this run

name: Test coverage for pull request
on:
pull_request:
branches:
- main
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: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:cov -- --maxWorkers=100%
- name: Coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './coverage/lcov.info'