Skip to content

docs: fix the readme test commands #32

docs: fix the readme test commands

docs: fix the readme test commands #32

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Add env
run: echo 'JWT_SECRET=yop' > .env.app.local; echo SMTP_CONNECTION_URL = smtp://localhost:1025 >> .env.app.local
- name: Install dependencies
run: npm ci
- name: Run pre-commit tests
run: npm t