Skip to content

동물 상세보기 페이지 이름, 연락처 정렬 #76

동물 상세보기 페이지 이름, 연락처 정렬

동물 상세보기 페이지 이름, 연락처 정렬 #76

Workflow file for this run

name: npm-build-and-deploy
on:
pull_request:
branches: [ develop ]
jobs:
npm-build:
runs-on: ubuntu-22.04
# build 중 warning 무시
env:
CI: false
steps:
- uses: actions/[email protected]
- name: Set up Node 20
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Inject .env file from GitHub Secrets
env:
ENV_FILE: ${{ secrets.ENV_FILE }}
TARGET_DIR: ./
run: echo $ENV_FILE | base64 -d > $TARGET_DIR/.env
- name: Try build
run: npm run build