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
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Code owners for dev-toolkit.
# Pairs with the branch ruleset's "Require review from Code Owners": every change
# needs @lsr-explore's review before it can merge to a protected branch.
# (As repo admin on the ruleset's bypass list, you can still merge your own PRs.)
* @lsr-explore
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# CI for dev-toolkit.
#
# Adapted from templates/github/ci.yml: this repo is a snippet *library* (npm +
# markdownlint), not a pnpm frontend app, so it runs the markdown lint rather than
# lint/typecheck/test. Gives branch protection a real status check to require.
name: CI

on:
push:
pull_request:

# Cancel superseded runs on the same ref so PRs don't queue stale jobs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

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

- name: Install
run: npm ci

- name: Lint Markdown
run: npm run lint:md
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
Loading