Skip to content

Bump eslint from 8.57.0 to 9.4.0 #115

Bump eslint from 8.57.0 to 9.4.0

Bump eslint from 8.57.0 to 9.4.0 #115

Workflow file for this run

#yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
Validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- name: Lint TypeScript
run: npm run lint
- name: Lint Dockerfile
uses: hadolint/[email protected]
id: hadolint
with:
dockerfile: Dockerfile
- run: echo -e "### Hadolint - ${{ steps.hadolint.outcome }}\n${{ env.HADOLINT_RESULTS }}" >> $GITHUB_STEP_SUMMARY
- run: npm test -- --coverage --testLocationInResults --json --outputFile coverage/report.json
- uses: ArtiomTr/jest-coverage-report-action@v2
if: ${{ github.actor != 'dependabot[bot]' }}
with:
skip-step: all
coverage-file: coverage/report.json
base-coverage-file: coverage/report.json