Skip to content

feat :: report page make #18

feat :: report page make

feat :: report page make #18

Workflow file for this run

name: upik
on:
push:
paths:
- "apps/admin/**"
- "apps/client/**"
pull_request:
paths:
- "apps/admin/**"
- "apps/client/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: 의존성 설치
run: pnpm install
working-directory: /
- name: Prettier 코드 포맷 검사
run: pnpm prettier --check .
- name: Run Build (admin App)
run: pnpm turbo run build --filter=./apps/admin --continue
- name: Run Build (client App)
run: pnpm turbo run build --filter=./apps/client --continue
- name: 테스트 실행
run: pnpm test