mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Add .vscode/ with Biome formatter, Tailwind, Vitest, Playwright, and Python debug configs. Extract shared pnpm/Node setup into a composite GitHub Action and add Dependabot and dependency-review workflows.
19 lines
352 B
YAML
19 lines
352 B
YAML
name: Dependency Review
|
|
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
dependency-review:
|
|
name: Review
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/dependency-review-action@v4
|
|
with:
|
|
fail-on-severity: high
|
|
comment-summary-in-pr: always
|