Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Delete integration for the authenticated user. See the documentation
Get the authenticated user on Codacy. See the documentation
List organizations for the authenticated user. See the documentation
The Codacy API lends itself to automated code review and analysis within Pipedream's serverless platform. By wielding this API, you can craft workflows that trigger on code pushes, scrutinize code quality, enforce coding standards, and seamlessly integrate with other tools for broader development process automation. It's a gateway to embed code quality checks into your CI/CD pipeline, get real-time alerts, and keep your codebase healthy, all within the Pipedream ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
codacy: {
type: "app",
app: "codacy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.codacy.com/api/v3/user`,
headers: {
"Accept": `application/json`,
"api-token": `${this.codacy.$auth.api_token}`,
},
})
},
})