Skip to content

fix: harden DB/Redis setup with escaping, auth, login probes, and SQL… #31

fix: harden DB/Redis setup with escaping, auth, login probes, and SQL…

fix: harden DB/Redis setup with escaping, auth, login probes, and SQL… #31

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm test
- run: pnpm build