From 166ea18bffdab6a764e4dfea09fe0cf6c3edd6c5 Mon Sep 17 00:00:00 2001 From: Jason Ernst Date: Mon, 16 Mar 2026 12:02:21 -0700 Subject: [PATCH] Add Renovate config and CI workflow --- .github/workflows/ci.yml | 17 +++++++++++++++++ renovate.json | 9 +++++++++ 2 files changed, 26 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..4c52070 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [master] + pull_request: + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + - run: npm ci \ No newline at end of file diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..1f0c969 --- /dev/null +++ b/renovate.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "automerge": true, + "automergeType": "pr", + "platformAutomerge": true +} \ No newline at end of file