Skip to content

[Feature/#160] 워크스페이스/멤버관리 페이지 스켈레톤 UI 적용 #263

[Feature/#160] 워크스페이스/멤버관리 페이지 스켈레톤 UI 적용

[Feature/#160] 워크스페이스/멤버관리 페이지 스켈레톤 UI 적용 #263

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
- main
jobs:
lint-and-build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run build
run: pnpm build