Skip to content

Feat(host): 공연 이미지 수정/삭제 기능 추가 (#343) #776

Feat(host): 공연 이미지 수정/삭제 기능 추가 (#343)

Feat(host): 공연 이미지 수정/삭제 기능 추가 (#343) #776

Workflow file for this run

name: CI
on:
pull_request:
branches: [develop, main]
push:
branches: [develop, main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify (lint & build)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Enable Corepack (pnpm)
run: |
corepack enable
pnpm --version
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build