Skip to content

Bump jws from 3.2.2 to 3.2.3 in /Tokenization/backend/central-system … #2667

Bump jws from 3.2.2 to 3.2.3 in /Tokenization/backend/central-system …

Bump jws from 3.2.2 to 3.2.3 in /Tokenization/backend/central-system … #2667

Workflow file for this run

name: InfoLogger
on:
pull_request:
paths:
- 'InfoLogger/**/*'
- '.github/workflows/infologger.yml'
push:
branches:
- 'main'
- 'dev'
jobs:
test:
name: Tests on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: '22.x'
- run: (cd InfoLogger; npm ci )
- run: (cd InfoLogger; npm test )
coverage:
name: Tests & coverage on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22.x'
- run: (cd InfoLogger; npm ci )
- run: (cd InfoLogger; npm run coverage )
- run: (cd InfoLogger; ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov)
- name: Send codecov report for InfoLogger
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: infologger
fail_ci_if_error: true