fix: 앱 처음 진입 시, 지점 설정 안하고 예약 탭에서 처음 설정된 강남1호점 미팅룸 예약 페이지 진입 후 지점 상세보기… #162
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create .env file | |
run: | | |
touch .env | |
echo "${{ secrets.ENV_DEVELOPMENT }}" > .env | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- run: npm install | |
- run: npm run lint | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create .env file | |
run: | | |
touch .env | |
echo "${{ secrets.ENV_DEVELOPMENT }}" > .env | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- run: npm install | |
- run: CI='false' npm run build | |
# test: | |
# name: Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Create .env file | |
# run: | | |
# touch .env | |
# echo "${{ secrets.ENV_DEVELOPMENT }}" > .env | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-node@v2 | |
# with: | |
# node-version: '20' | |
# - run: npm install | |
# - run: npm run build |