From 2eea691e1272b4af55126cdcb4ca4a419271cbdd Mon Sep 17 00:00:00 2001 From: donneko <117331095+donneko@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:33:01 +0900 Subject: [PATCH] =?UTF-8?q?CI=3F=20=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/deploy-test.yml diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml new file mode 100644 index 0000000..1030375 --- /dev/null +++ b/.github/workflows/deploy-test.yml @@ -0,0 +1,27 @@ +name: Test on Dev + +on: + push: + branches: [dev] + + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Test Package + run: npm run vi-test