Skip to content

FIX: InfoDialog 취소 버튼 필요시 추가 가능 처리 #3

FIX: InfoDialog 취소 버튼 필요시 추가 가능 처리

FIX: InfoDialog 취소 버튼 필요시 추가 가능 처리 #3

Workflow file for this run

name: Next.js Build Test
on:
pull_request:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 21
- name: Cache yarn
uses: actions/cache@v4
id: yarn-cache
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install
- name: Check environment variable
run: echo SERVER_URL
- name: Run build test
run: yarn build