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
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
32 changes: 18 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
name: CI

on:
pull_request:
push:
branches: [main]
pull_request:

permissions:
contents: read

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
quality:
name: Lint, test, build, and audit
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- name: Checkout
uses: actions/checkout@v5
- name: Check out repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v6
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 24
node-version-file: .nvmrc
cache: npm

- name: Install
- name: Install dependencies
run: npm ci

- name: Check
- name: Check project
run: npm run check

- name: Install Playwright Chromium
run: npx playwright install chromium --with-deps

- name: Browser Tests
run: npm run test:e2e
- name: Audit dependencies
run: npm audit --audit-level=moderate
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ npm run test:e2e

LaunchDeck uses system Google Chrome for Playwright in this repo so local e2e tests do not require downloading a bundled browser when Chrome is already installed.

GitHub Actions runs linting, unit tests, a production build, and a dependency audit on every pull request and push to `main`. Dependabot keeps npm and workflow dependencies visible.

## Safety Model

LaunchDeck is intentionally local-first:
Expand Down
Loading