Skip to content

Fix(audience): 모바일 환경에서의 svg 사라짐 오류 해결 #790

Fix(audience): 모바일 환경에서의 svg 사라짐 오류 해결

Fix(audience): 모바일 환경에서의 svg 사라짐 오류 해결 #790

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