Skip to content

feat: 전화번호 및 학번 검색어 유형 추가 (#92) #103

feat: 전화번호 및 학번 검색어 유형 추가 (#92)

feat: 전화번호 및 학번 검색어 유형 추가 (#92) #103

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'