Skip to content

README 최종 완성 #35

README 최종 완성

README 최종 완성 #35

Workflow file for this run

name: PR-BUILD-TEST
on:
pull_request:
branches:
- development
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.12.3
node-version: 20
cache: true
- name: Install dependencies with pnpm
run: pnpm install --no-frozen-lockfile
- name: Build the project
run: pnpm build