Skip to content

security: harden idempotency middleware and sync docs #10

security: harden idempotency middleware and sync docs

security: harden idempotency middleware and sync docs #10

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Environment (Using NodeJS 22.x)
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Linting
run: npx prettier --check *.js
- name: Run tests
run: npm run test