Skip to content

Commit 4e0f7ec

Browse files
committed
chore(ci): remove Codacy integration and add CodeQL badge (#463)
- Delete .codacy.yml configuration file - Remove Codacy coverage upload from CI workflow - Replace Codacy badge with CodeQL badge in README - Update AGENTS.md documentation to remove Codacy references - Clean up .dockerignore
1 parent 01ec738 commit 4e0f7ec

File tree

5 files changed

+3
-41
lines changed

5 files changed

+3
-41
lines changed

.codacy.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ dist/
55
node_modules/
66
postman-collections/
77
tests/
8-
.codacy.yml
98
.codeclimate.yml
109
.env
1110
.eslintrc.json

.github/workflows/node-ci.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ jobs:
7979
permissions:
8080
contents: read
8181

82-
strategy:
83-
matrix:
84-
service: [codecov, codacy]
8582
steps:
8683
- name: Checkout repository
8784
uses: actions/checkout@v6.0.2
@@ -91,14 +88,7 @@ jobs:
9188
with:
9289
name: coverage
9390

94-
- name: Upload coverage report to ${{ matrix.service }}
95-
if: ${{ matrix.service == 'codecov' }}
91+
- name: Upload coverage report to Codecov
9692
uses: codecov/codecov-action@v5.5.2
9793
with:
9894
token: ${{ secrets.CODECOV_TOKEN }}
99-
100-
- name: Upload coverage report to ${{ matrix.service }}
101-
if: ${{ matrix.service == 'codacy' }}
102-
uses: codacy/codacy-coverage-reporter-action@v1.3.0
103-
with:
104-
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ See [CHANGELOG.md](CHANGELOG.md#how-to-release) for complete release instruction
209209
2. **Lint**: ESLint + commitlint validation
210210
3. **Build**: TypeScript compilation (`npm run build`)
211211
4. **Test**: Jest with coverage report
212-
5. **Coverage**: Upload to Codecov and Codacy
212+
5. **Coverage**: Upload to Codecov
213213

214214
**Note**: CI only validates code - it does NOT publish Docker images.
215215

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Node.js CI](https://github.com/nanotaboada/ts-node-samples-express-restful/actions/workflows/node-ci.yml/badge.svg)](https://github.com/nanotaboada/ts-node-samples-express-restful/actions/workflows/node-ci.yml)
44
[![Node.js CD](https://github.com/nanotaboada/ts-node-samples-express-restful/actions/workflows/node-cd.yml/badge.svg)](https://github.com/nanotaboada/ts-node-samples-express-restful/actions/workflows/node-cd.yml)
5+
[![CodeQL](https://github.com/nanotaboada/ts-node-samples-express-restful/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/nanotaboada/ts-node-samples-express-restful/actions/workflows/github-code-scanning/codeql)
56
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanotaboada_ts-node-samples-express-restful&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=nanotaboada_ts-node-samples-express-restful)
6-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/c845d2bc280d4840a86a56a91407cea7)](https://app.codacy.com/gh/nanotaboada/ts-node-samples-express-restful/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
77
[![codecov](https://codecov.io/gh/nanotaboada/ts-node-samples-express-restful/graph/badge.svg?token=VxKaWl2DfD)](https://codecov.io/gh/nanotaboada/ts-node-samples-express-restful)
88
[![CodeFactor](https://www.codefactor.io/repository/github/nanotaboada/ts-node-samples-express-restful/badge)](https://www.codefactor.io/repository/github/nanotaboada/ts-node-samples-express-restful)
99
[![License: MIT](https://img.shields.io/badge/License-MIT-white.svg)](https://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)