Skip to content

Bump @stylistic/eslint-plugin-js from 2.6.1 to 2.7.2 in /QualityControl in the dev-dependencies group #2329

Bump @stylistic/eslint-plugin-js from 2.6.1 to 2.7.2 in /QualityControl in the dev-dependencies group

Bump @stylistic/eslint-plugin-js from 2.6.1 to 2.7.2 in /QualityControl in the dev-dependencies group #2329

Workflow file for this run

name: QualityControl
on:
pull_request:
paths:
- 'QualityControl/**/*'
- '.github/workflows/qc.yml'
push:
branches:
- 'main'
- 'dev'
jobs:
test:
name: Tests on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: (cd QualityControl; npm ci )
- run: (cd QualityControl; npm run coverage )
- run: (cd QualityControl; ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov)
- name: Send codecov report for QualityControl
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: qualitycontrol
fail_ci_if_error: true
#coverage: Job is currently disabled due to known issue with node-gyp on GH runners
# name: Tests & coverage on macOS-latest
# runs-on: macOS-latest
# steps:
# - uses: actions/checkout@v4
# - name: Setup node
# uses: actions/setup-node@v4
# with:
# node-version: '20.x'
# - run: (cd QualityControl; npm ci )
# - run: (cd QualityControl; npm run test)