Skip to content

feat: auth 데코레이터 구현 및 가드 완성 #64

feat: auth 데코레이터 구현 및 가드 완성

feat: auth 데코레이터 구현 및 가드 완성 #64

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'