Skip to content

Bump eslint-config-cityssm from 38.3.2 to 39.0.0 #25

Bump eslint-config-cityssm from 38.3.2 to 39.0.0

Bump eslint-config-cityssm from 38.3.2 to 39.0.0 #25

Workflow file for this run

name: Coverage Testing
on: [workflow_dispatch, push, pull_request]
permissions: read-all
jobs:
Coverage-on-Ubuntu:
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install Application
run: |
npm ci
npm install -g c8
- name: Run Coverage Testing
run: npm run coverage
- name: Codecov
if: ${{ github.event_name != 'pull_request' && env.CODECOV_TOKEN != '' }}
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}