Skip to content

test: 랜덤 리뷰어 자동 배정 디버깅 #30

test: 랜덤 리뷰어 자동 배정 디버깅

test: 랜덤 리뷰어 자동 배정 디버깅 #30

Workflow file for this run

name: CI
on:
pull_request:
branches:
- dev
permissions:
contents: read
jobs:
ci:
name: Lint, Type Check, Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Get pnpm store directory
id: pnpm-cache
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache pnpm store
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Type Check
run: pnpm check-types
- name: Build
run: pnpm build