Skip to content

Commit 7a669e5

Browse files
committed
feat: remove codeql
1 parent 71791c6 commit 7a669e5

File tree

9 files changed

+0
-98
lines changed

9 files changed

+0
-98
lines changed

.github/workflows/codeql.yml

-17
This file was deleted.

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ npx @allohamora/cli
3939
- [**docker**](src/categories/js/docker/) is a script to initialize [docker](https://github.com/docker) with Dockerfile and .dockerignore files
4040
- [**test-workflow**](/src/categories/js/test-workflow.ts) is a script to initialize github test workflow what runs `npm run test` on each push to github.
4141
- [**build-workflow**](/src/categories/js/build-workflow) is a script to initialize github build workflow that runs `npm run build` on each push to github.
42-
- [**codeql-workflow**](/src/categories/js/codeql-workflow) is a script to initialize github codeql workflow what runs codeql with default options on each push to github.
4342
- [**codecov-workflow**](/src/categories/js/codecov-workflow/) is a script to initialize codecov workflow that collects code coverage and send it to codecov. The workflow configured to work in public repositories (without codecov token), to run in private repository you need to modify the workflow and add token in codecov action
4443
- [**dependabot**](src/categories/js/dependabot/) is a script to initialize github dependabot what manages project dependencies vulnerabilities and opens pull requests with fixes.
4544

__tests__/categories/js/codeql-workflow/codeql-workflow.config.test.ts

-5
This file was deleted.

__tests__/categories/js/codeql-workflow/codeql-workflow.entrypoint.test.ts

-32
This file was deleted.

src/categories/js/codeql-workflow/codeql-workflow.config.ts

-6
This file was deleted.

src/categories/js/codeql-workflow/codeql-workflow.const.ts

-1
This file was deleted.

src/categories/js/codeql-workflow/codeql-workflow.entrypoint.ts

-9
This file was deleted.

src/categories/js/codeql-workflow/config/default.config.ts

-25
This file was deleted.

src/categories/js/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { jestEntrypoint } from './jest/jest.entrypoint';
1010
import { docker } from './docker/docker.entrypoint';
1111
import { releaseWorkflow } from './release-workflow/release-workflow.entrypoint';
1212
import { testWorkflow } from './test-workflow/test-workflow.entrypoint';
13-
import { codeqlWorkflow } from './codeql-workflow/codeql-workflow.entrypoint';
1413
import { buildWorkflow } from './build-workflow/build-workflow.entrypoint';
1514
import { codecovWorkflow } from './codecov-workflow/codecov-workflow.entrypoint';
1615
import { dependabot } from './dependabot/dependabot.entrypoint';
@@ -29,7 +28,6 @@ const options = {
2928
docker,
3029
releaseWorkflow,
3130
testWorkflow,
32-
codeqlWorkflow,
3331
buildWorkflow,
3432
codecovWorkflow,
3533
dependabot,

0 commit comments

Comments
 (0)