design: 마지막 블록일때만 플레이스홀더 생성되도록 스타일 수정 #256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Unit Test | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
lint_and_unit_test: | |
name: Lint and Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Install pnpm | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
run_install: true | |
# Set up Node.js | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "pnpm" | |
# Run build | |
- name: Install dependencies and build packages | |
run: | | |
pnpm install --frozen-lockfile | |
pnpm --filter @noctaCrdt build | |
pnpm --filter server build | |
# Run lint | |
- name: Run Lint | |
run: pnpm eslint . | |
# Run Unit tests | |
- name: Run Unit Tests | |
run: pnpm test | |
env: | |
NODE_ENV: development | |
JWT_SECRET: ${{ secrets.JWT_SECRET }} | |
JWT_REFRESH_SECRET: ${{ secrets.JWT_REFRESH_SECRET }} | |
VITE_API_URL: ${{ secrets.VITE_API_URL }} |