Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
700e935
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
5709c81
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
52044e7
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
9b85600
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
902ed48
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
e966e5d
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
120d09f
security: [Quality][High] Improve commitment API route validation: tr…
Olayiwola2904 Aug 31, 2026
ce02509
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
c61b68d
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
0610466
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
f13f917
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
2a2fe63
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
565cf71
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
39ad62f
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
9a3f34e
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
7a1d0d7
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
d1ce23a
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
453c83d
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
7951ecc
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
f60c028
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
8562c1c
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
15942b6
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
bc70d14
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
9c566af
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
a4bf82c
fix(ci): resolve failing checks for #1757
Olayiwola2904 Aug 31, 2026
ae1189a
fix: resolve merge conflicts with base
Olayiwola2904 Aug 31, 2026
5cd067f
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
31a27fd
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
fd0a144
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
cbc5edd
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
10b1290
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
bd867c6
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
9792003
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
1d19d71
fix(ci): resolve failing checks for #1872
Olayiwola2904 Sep 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v7
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
Expand All @@ -37,7 +37,7 @@ jobs:
CI: true

- name: Upload coverage report
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
Expand All @@ -50,10 +50,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v7
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
Expand All @@ -62,7 +62,7 @@ jobs:
run: npm ci

- name: Validate OpenAPI spec
run: bash validate-openapi.sh
run: bash scripts/validate-openapi.sh

- name: Check API route coverage
run: bash scripts/check-route-coverage.sh
318 changes: 170 additions & 148 deletions src/app/api/commitments/route.ts

Large diffs are not rendered by default.

Loading
Loading