Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
groups:
mesh-sdk:
patterns:
- "@meshsdk/*"
next:
patterns:
- "next"
- "next-*"
- "@next/*"
prisma:
patterns:
- "prisma"
- "@prisma/*"
trpc:
patterns:
- "@trpc/*"
types:
patterns:
- "@types/*"
update-types:
- "minor"
- "patch"
labels:
- "dependencies"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
labels:
- "dependencies"
- "ci"
5 changes: 2 additions & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,19 @@ jobs:
- name: Generate Prisma client
run: npx prisma generate

# Lint stays non-blocking until the rule set is cleaned up; tracked separately.
- name: Lint
run: npm run lint
continue-on-error: true

# Typecheck, test, and build are gates — failures must fail the PR.
- name: Type check
run: npx tsc --noEmit
continue-on-error: true

- name: Test
run: npm run test:ci
continue-on-error: true

- name: Build
run: npm run build
env:
SKIP_ENV_VALIDATION: 'true'
continue-on-error: true
Loading