Skip to content

feat: 도어락 비밀번호 업데이트 구현 #66

feat: 도어락 비밀번호 업데이트 구현

feat: 도어락 비밀번호 업데이트 구현 #66

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'