Skip to content

chore(deps): bump body-parser from 2.2.0 to 2.2.1 #1662

chore(deps): bump body-parser from 2.2.0 to 2.2.1

chore(deps): bump body-parser from 2.2.0 to 2.2.1 #1662

Workflow file for this run

name: Node.js Lint CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
- name: Install dependencies
run: npm install
- name: Build TypeScript project
run: npm run build --if-present
- name: Lint
run: npm run check