Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/build.js.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion apps/client/src/pages/home/home-page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const HomePage = () => {
return <div>home-page</div>;
return <div>home-page ๋ฐฐํฌ ํ…Œ์ŠคํŠธ์ž…๋‹ˆ๋‹ค ํ•˜๋ฃฐ๋ผ๋ผ</div>;
};

export default HomePage;