Skip to content

npm - back-end: bump @typescript-eslint/parser from 6.18.1 to 8.20.0 #1168

npm - back-end: bump @typescript-eslint/parser from 6.18.1 to 8.20.0

npm - back-end: bump @typescript-eslint/parser from 6.18.1 to 8.20.0 #1168

Workflow file for this run

name: GitHub NPM Test
on:
push:
branches-ignore:
- 'dependabot/**'
- trunk
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: npm
- name: Install Dependencies
run: npm ci
- name: Run Markdownlint
run: npm run lint:md
- name: Run ESLint
run: npm run lint:js
- name: Run cSpell
run: |
echo "::add-matcher::.github/workflows/cspell-problem-matcher.json"
npm run lint:spell
- name: Run tests
run: npm test
- name: Build container
run: |
docker build .