mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
* Updates Typescript to latest version * Changes server Typescript config to actually emit JS files. We were already running a full tsc invocation against the server for typechecking anyway... and we use tsx for fast dev iteration w/o typechecking, so we may as well just emit the actual JS files so that we can take advantage of thinks like decorator metadata (upcoming inversify PR...) * Updates better-sqlite version to latest * Bumps node version requirement to 22 and codifies it in package.json engines
14 lines
241 B
YAML
14 lines
241 B
YAML
name: Lint Commit Messages
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
commitlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: wagoid/commitlint-github-action@v6
|