Skip to content

Bump body-parser from 2.2.0 to 2.2.1 in the npm_and_yarn group across 1 directory #107

Bump body-parser from 2.2.0 to 2.2.1 in the npm_and_yarn group across 1 directory

Bump body-parser from 2.2.0 to 2.2.1 in the npm_and_yarn group across 1 directory #107

Workflow file for this run

name: Build Node.js app
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x', '22.x', '24.x']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build code
run: npm run build