Skip to content

[Feat] pnpm workspace 추가 #5

[Feat] pnpm workspace 추가

[Feat] pnpm workspace 추가 #5

Workflow file for this run

name: CI-Build
on:
pull_request:
branches: [main, develop]
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build