From 51f2f45adf56ffcd396f142280f108a0bc12728c Mon Sep 17 00:00:00 2001 From: floydkim Date: Mon, 27 Oct 2025 23:53:35 +0900 Subject: [PATCH] chore: add unit test workflow configuration --- .github/workflows/unit-test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/unit-test.yml diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml new file mode 100644 index 000000000..af04097ab --- /dev/null +++ b/.github/workflows/unit-test.yml @@ -0,0 +1,24 @@ +name: Unit Test + +on: + push: + branches: + - '**' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Run Jest + run: npm run jest