Skip to content

chore: add missing final newline to package.json #181

chore: add missing final newline to package.json

chore: add missing final newline to package.json #181

Workflow file for this run

name: Code Quality
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
concurrency:
group: quality-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-format:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Check formatting
run: npm run format:check
build:
name: Build
runs-on: ubuntu-latest
env:
DATABASE_URL: "file:${{ github.workspace }}/prisma/test.db"
steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup project
uses: ./.github/actions/setup-project
with:
build: "true"