Skip to content

fix: 삭제된 ImageInput 컴포넌트 복구 #391

fix: 삭제된 ImageInput 컴포넌트 복구

fix: 삭제된 ImageInput 컴포넌트 복구 #391

Workflow file for this run

name: workRoot CI
on:
push:
branches:
- main # main 브랜치에 푸시될 때 실행
- dev
pull_request:
branches:
- dev
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20" # 최신 Node.js 20.x.x 버전 사용
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Print environment variables
run: echo "Supabase URL: $NEXT_PUBLIC_SUPABASE_URL, Supabase Key: $NEXT_PUBLIC_SUPABASE_ANON_KEY"

Check failure on line 40 in .github/workflows/workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
env:
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
- name: Build
run: npm run build