Skip to content

Commit

Permalink
feat: Add GitHub funding and renovate configuration
Browse files Browse the repository at this point in the history
This commit introduces a new GitHub funding configuration and a
renovate.json file for managing dependencies. It also adds a new GitHub
Actions workflow for continuous integration. The workflow is configured
to run on push and pull request events, and it uses pnpm for dependency
management.
  • Loading branch information
ryoppippi committed Aug 6, 2024
1 parent 0ce25aa commit c3f9efc
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: ryoppippi
16 changes: 16 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"vulnerabilityAlerts": {
"labels": ["security"]
},
"labels": ["dependencies", "renovate"],
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": true
},
"platformAutomerge": true,
"dependencyDashboard": false,
"automerge": true,
"branchConcurrentLimit": 0,
"stabilityDays": 3
}
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on:
push:
pull_request:

env:
NODE_VERSION: 22.x


jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run check
run: pnpm typecheck
- name: Run lint
run: pnpm lint

0 comments on commit c3f9efc

Please sign in to comment.