Skip to content

fix: 유저 id 타입 변경에 따른 타입 에러 수정 (#93) #104

fix: 유저 id 타입 변경에 따른 타입 에러 수정 (#93)

fix: 유저 id 타입 변경에 따른 타입 에러 수정 (#93) #104

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'