[DO NOT MERGE YET] feat: enhance LoggerService with JSON sanitization #170
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |