forked from eunji-0623/GlobalNomad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request eunji-0623#26 from eunji-0623/조혜진
Feat: Loading Spinner, 404Page, build CI
- Loading branch information
Showing
21 changed files
with
248 additions
and
157 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Build # workflow 의 이름 | ||
|
||
on: push # workflow 의 실행 시점 | ||
|
||
jobs: | ||
build: # job 의 이름 | ||
runs-on: ubuntu-latest # 실행할 OS 환경 | ||
steps: # job 의 세부 단계 | ||
# step1 : 코드 체크아웃 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
# step2 : Node.js 설치 | ||
- name: Install dependencies | ||
run: npm install | ||
|
||
# step3 : 빌드 | ||
- name: Build Next.js app | ||
run: npm run build |
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
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
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
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
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
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
Oops, something went wrong.