-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate CirlceCI with readme badge #12
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job
️✅ There are no secrets present in this pull request anymore.If these secrets were true positive and are still valid, we highly recommend you to revoke them. 🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request. |
d43faa5
to
39d4515
Compare
__test__/home.test.ts
Outdated
@@ -0,0 +1,12 @@ | |||
import { expect, test } from "@jest/globals" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
__test__/home.test.ts
Outdated
@@ -0,0 +1,12 @@ | |||
import { expect, test } from "@jest/globals" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
jest.config.js
Outdated
clearMocks: true, | ||
resetMocks: true, | ||
restoreMocks: true, | ||
clearMocks: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate key 'clearMocks' no-dupe-keys
jest.config.js
Outdated
@@ -0,0 +1,12 @@ | |||
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ | |||
module.exports = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'module' is not defined no-undef
src/controllers/user.controller.ts
Outdated
@@ -0,0 +1,29 @@ | |||
import { Request, Response } from "express"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
jest.config.js
Outdated
clearMocks: true, | ||
resetMocks: true, | ||
restoreMocks: true, | ||
clearMocks: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate key 'clearMocks' no-dupe-keys
jest.config.js
Outdated
@@ -0,0 +1,12 @@ | |||
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ | |||
module.exports = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'module' is not defined no-undef
src/controllers/user.controller.ts
Outdated
@@ -0,0 +1,29 @@ | |||
import { Request, Response } from "express"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/database/models/user.model.ts
Outdated
@@ -1,39 +1,117 @@ | |||
import { DataTypes, Model } from 'sequelize'; | |||
import { sequelize } from '../config/sequelize.config'; | |||
import { DataTypes, Model } from "sequelize"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/routes/user.route.ts
Outdated
@@ -0,0 +1,9 @@ | |||
import express from 'express'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/services/user.services.ts
Outdated
@@ -0,0 +1,11 @@ | |||
import User from "../database/models/user.model"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/routes/user.route.ts
Outdated
@@ -0,0 +1,9 @@ | |||
import express from 'express'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/services/user.services.ts
Outdated
@@ -0,0 +1,11 @@ | |||
import User from "../database/models/user.model"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/types/user.types.ts
Outdated
@@ -0,0 +1,32 @@ | |||
import { Optional } from "sequelize"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/utils/password.utils.ts
Outdated
@@ -0,0 +1,11 @@ | |||
import bcrypt from "bcrypt"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/utils/tokenGenerator.utils.ts
Outdated
@@ -0,0 +1,13 @@ | |||
import jwt from 'jsonwebtoken'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/types/user.types.ts
Outdated
@@ -0,0 +1,32 @@ | |||
import { Optional } from "sequelize"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/utils/password.utils.ts
Outdated
@@ -0,0 +1,11 @@ | |||
import bcrypt from "bcrypt"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/utils/tokenGenerator.utils.ts
Outdated
@@ -0,0 +1,13 @@ | |||
import jwt from 'jsonwebtoken'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
src/validations/user.validate.ts
Outdated
@@ -0,0 +1,72 @@ | |||
import Joi from "joi"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parsing error: 'import' and 'export' may appear only with 'sourceType: module'
Integrate CirlceCI with readme badge
"Integrating CircleCI with our project's README will provides a quick and visual indication of the build status for each pull request.
By adding a badge to our README, contributors and reviewers can easily see whether the latest changes pass the automated tests.
This integration streamlines the review process, ensuring that only stable code gets merged into the main branch."