diff --git a/.github/workflows/build.js.yml b/.github/workflows/build.js.yml new file mode 100644 index 00000000..7b414a48 --- /dev/null +++ b/.github/workflows/build.js.yml @@ -0,0 +1,34 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Build Test + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: 🧰 Setup Node.js 20 + uses: actions/setup-node@v3 + with: + node-version: 20 + + - name: πŸ“¦ Install pnpm + run: | + npm install -g pnpm + echo "PNPM PATH: $(which pnpm)" + pnpm --version + + - name: πŸ“₯ Install dependencies + run: pnpm install + + - name: πŸ›  Run build + run: pnpm build diff --git a/apps/client/src/pages/home/home-page.tsx b/apps/client/src/pages/home/home-page.tsx index 2823f349..a3f5c4dd 100644 --- a/apps/client/src/pages/home/home-page.tsx +++ b/apps/client/src/pages/home/home-page.tsx @@ -1,5 +1,5 @@ const HomePage = () => { - return
home-page
; + return
home-page 배포 ν…ŒμŠ€νŠΈμž…λ‹ˆλ‹€ ν•˜λ£°λΌλΌ
; }; export default HomePage;