Skip to content

chore(deps): bump body-parser from 2.2.2 to 2.3.0 #1175

chore(deps): bump body-parser from 2.2.2 to 2.3.0

chore(deps): bump body-parser from 2.2.2 to 2.3.0 #1175

Workflow file for this run

name: lints
on:
pull_request:
branches-ignore:
- dependabot/**
push:
paths-ignore: []
branches-ignore: []
tags-ignore:
- "*"
jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
js:
if: "!(contains(github.event.head_commit.message, 'Merge') && contains(github.event.head_commit.message, '/dependabot/')) && ${{ github.actor != 'dependabot[bot]' }}"

Check warning on line 15 in .github/workflows/lints.yml

View workflow run for this annotation

GitHub Actions / lints

Workflow syntax warning

.github/workflows/lints.yml (Line: 15, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
timeout-minutes: 10
# Name the Job
name: javascript
# Set the type of machine to run on
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v6.0.3
- name: node.js
uses: actions/setup-node@v6
with:
node-version: lts/*
- name: Install
run: npm ci
- name: Run ESLint
run: npm run lint