Skip to content

[DO NOT MERGE YET] feat: enhance LoggerService with JSON sanitization #170

[DO NOT MERGE YET] feat: enhance LoggerService with JSON sanitization

[DO NOT MERGE YET] feat: enhance LoggerService with JSON sanitization #170

Workflow file for this run

name: Pull Requests (CI)
on:
pull_request:
branches:
- '**'
jobs:
test:
name: Running jest test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: NPM Install
run: npm ci
- name: Lint check
run: npm run lint
- name: Test run with coverage check
run: npm run coverage
- name: Upload code coverage report
uses: actions/upload-artifact@v4
if: failure()
with:
name: coverage
path: coverage