Skip to content

API: Respond with 400 status on invalid requests (#2130) #3227

API: Respond with 400 status on invalid requests (#2130)

API: Respond with 400 status on invalid requests (#2130) #3227

Workflow file for this run

name: Specberus tests
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request_target:
permissions:
contents: read
env:
PUPPETEER_EXECUTABLE_PATH: /usr/bin/google-chrome
PUPPETEER_SKIP_DOWNLOAD: 1
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
steps:
- name: Checkout
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v7
- name: Checkout PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run coverage:text