Skip to content

Bump eslint-config-cityssm from 1.7.0 to 5.0.0 #37

Bump eslint-config-cityssm from 1.7.0 to 5.0.0

Bump eslint-config-cityssm from 1.7.0 to 5.0.0 #37

Workflow file for this run

name: Coverage Testing
on: [workflow_dispatch, push, pull_request]
permissions: read-all
jobs:
Coverage:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
node: [ 18, 20, 21 ]
env:
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install Package
run: |
npm ci
npm install -g c8 cross-env
- name: Copy Test Config
run: cp ./test/config/config.githubActions.js ./test/config/config.test.js
- name: Run Coverage Testing
run: npm run coverage
- name: DeepSource
if: ${{ github.event_name != 'pull_request' && env.DEEPSOURCE_DSN != '' && matrix.node == 20 }}
run: |
# Install deepsource CLI
curl https://deepsource.io/cli | sh
# From the root directory, run the report coverage command
./bin/deepsource report --analyzer test-coverage --key javascript --value-file ./coverage/lcov.info