From e49d5158e35c1710d36801ee094aad515df09d1f Mon Sep 17 00:00:00 2001 From: ikue hase <100295602+narutiga@users.noreply.github.com> Date: Tue, 7 Jul 2026 13:31:08 +0900 Subject: [PATCH] chore: add CI workflow and Renovate config Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ renovate.json | 4 ++++ 2 files changed, 29 insertions(+) create mode 100644 .github/workflows/ci.yml create mode 100644 renovate.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..cfbef40 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI + +on: + pull_request: + push: + branches: [main] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 8 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'pnpm' + - name: Install dependencies + run: pnpm install --frozen-lockfile + - name: Build + run: pnpm build diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..62136da --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>narutiga/renovate-config"] +}