Skip to content

임시저장 안내 토스트 상대 시간으로 안내 및 공동 작성 블록 레이아웃 버그 수정 #34

임시저장 안내 토스트 상대 시간으로 안내 및 공동 작성 블록 레이아웃 버그 수정

임시저장 안내 토스트 상대 시간으로 안내 및 공동 작성 블록 레이아웃 버그 수정 #34

Workflow file for this run

name: Backend Unit Tests
on:
pull_request:
branches: [main, dev]
paths:
- 'backend/**'
- 'pnpm-lock.yaml'
push:
branches: [main, dev]
paths:
- 'backend/**'
- 'pnpm-lock.yaml'
permissions:
contents: read
pull-requests: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run backend unit tests with coverage
run: pnpm test:be:coverage
- name: Report coverage on PR
if: github.event_name == 'pull_request'
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: backend
name: Backend