From d54b4ab980a56bcb8c50e0a294edb19e677f1b3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=B5=E1=84=86=E1=85=B5=E1=86=AB=E1=84=92?= =?UTF-8?q?=E1=85=B4?= Date: Tue, 2 Jul 2024 00:23:41 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20#1=20build=20=EC=9E=90=EB=8F=99?= =?UTF-8?q?=ED=99=94=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-test.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build-test.yml diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml new file mode 100644 index 00000000..d4a4b4df --- /dev/null +++ b/.github/workflows/build-test.yml @@ -0,0 +1,32 @@ +name: Build Test + +on: + push: + branches: -main + pull_request: + branches: -main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 6.10.0 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "18" + cache: "pnpm" + + - name: Install Dependencies + run: pnpm install + + - name: Build + run: pnpm build