chore(deps): bump body-parser from 2.2.2 to 2.3.0 #1175
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
|
||
| 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 | ||