Skip to content

Bump eslint from 8.57.0 to 9.2.0 in the eslint group across 1 directory #1276

Bump eslint from 8.57.0 to 9.2.0 in the eslint group across 1 directory

Bump eslint from 8.57.0 to 9.2.0 in the eslint group across 1 directory #1276

Workflow file for this run

name: "[TEST] NewsFragments"
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Build & Test
run: npm test
- uses: SonarSource/sonarcloud-github-action@master
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}