Skip to content

Commit 8e30f5f

Browse files
authored
SECOPS-2268: Add Gitleaks to CI (#28)
1 parent abbbca5 commit 8e30f5f

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ version: 2.1
22

33
orbs:
44
node: circleci/[email protected]
5+
secops: apollo/[email protected]
56

67
commands:
78
install-volta:
@@ -62,3 +63,12 @@ workflows:
6263
node-version:
6364
- "16"
6465
- Prettier
66+
security-scans:
67+
jobs:
68+
- secops/gitleaks:
69+
context:
70+
- platform-docker-ro
71+
- github-orb
72+
- secops-oidc
73+
git-base-revision: <<#pipeline.git.base_revision>><<pipeline.git.base_revision>><</pipeline.git.base_revision >>
74+
git-revision: << pipeline.git.revision >>

packages/fastify/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface FastifyHandlerOptions<TContext extends BaseContext> {
2727

2828
export function fastifyHandler(
2929
server: ApolloServer<BaseContext>,
30-
options?: FastifyHandlerOptions<BaseContext>
30+
options?: FastifyHandlerOptions<BaseContext>,
3131
): RouteHandlerMethod;
3232
export function fastifyHandler<TContext extends BaseContext>(
3333
server: ApolloServer<TContext>,

0 commit comments

Comments
 (0)