npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ckeditor/ckeditor5-dev-ci

v54.4.0

Published

Utils used on various Continuous Integration services.

Readme

CKEditor 5 CI utilities

npm version CircleCI

Utils for CKEditor 5 CI builds.

Contains tools for sending Slack notifications by Circle CI.

Available scripts

These commands accept a mix of environment variables and command line arguments. Environment variables are preferred when the value comes from the CI environment or is sensitive (like tokens). Command line arguments are preferred when the value is static or local to a given repository.

[!WARNING] Tokens are passed as environment variables to avoid exposing sensitive credentials in shell history, CI logs, or shared configuration files.

  • ⚙️ ckeditor5-dev-ci-circle-disable-auto-cancel-builds

    Disables the “Auto-cancel redundant workflows” option in CircleCI for a given repository. Useful during release processes to prevent CircleCI from canceling the workflow triggered by the release commit itself.

    Environment variables:

    • CKE5_CIRCLE_TOKEN — CircleCI API token used for authentication.

    Parameters:

    • --organization — GitHub organization name.
    • --repository — GitHub repository name.
  • ⚙️ ckeditor5-dev-ci-circle-enable-auto-cancel-builds

    Enables the “Auto-cancel redundant workflows” option in CircleCI for a given repository. Should be used after a release workflow that temporarily disables this option using the ckeditor5-dev-ci-circle-disable-auto-cancel-builds script.

    Environment variables:

    • CKE5_CIRCLE_TOKEN — CircleCI API token used for authentication.

    Parameters:

    • --organization — GitHub organization name.
    • --repository — GitHub repository name.
  • ⚙️ ckeditor5-dev-ci-circle-workflow-notifier

    Waits for all jobs in the current CircleCI workflow to finish (success or error) and then runs a final command (the "notifier"). Intended to run as a dedicated job in your workflow. The script itself handles waiting – you typically don’t add requires on this job.

    Environment variables:

    • CKE5_CIRCLE_TOKEN — CircleCI API token used for authentication.

    CircleCI-provided variables:

    • CIRCLE_WORKFLOW_ID — ID of the current workflow.
    • CIRCLE_JOB — Name of the current job.

    Parameters:

    • --task — Command to execute at the end; default: pnpm ckeditor5-dev-ci-notify-circle-status.
    • --ignore — Job name to ignore when waiting (repeatable; can be passed multiple times).

    Behavior:

    • Retries transient CircleCI API errors up to 5 attempts with a 10s delay between attempts.
    • Fails immediately for non-retryable API errors (for example: invalid token or wrong workflow ID).
    • If transient errors persist, it exits with an explicit message asking to verify workflow results manually.
  • ⚙️ ckeditor5-dev-ci-is-job-triggered-by-member

    Verifies that a CircleCI approval job was approved by a user who belongs to a specified GitHub team. Uses CircleCI and GitHub APIs to check the approver against the team membership.

    Environment variables:

    • CKE5_CIRCLE_TOKEN — CircleCI API token used for authentication.
    • CKE5_GITHUB_TOKEN — GitHub token used to query team membership.

    CircleCI-provided variables:

    • CIRCLE_WORKFLOW_ID — ID of the current workflow.

    Parameters:

    • --job — Name of the approval job to verify.
    • --organization — GitHub organization name.
    • --team — GitHub team name (slug) to validate against.
  • ⚙️ ckeditor5-dev-ci-is-workflow-restarted

    Checks whether the current CircleCI workflow has been restarted. If a restart is detected, the script exits with a zero exit code, allowing the pipeline to continue conditionally.

    Environment variables:

    • CKE5_CIRCLE_TOKEN — CircleCI API token used for authentication.

    CircleCI-provided variables:

    • CIRCLE_WORKFLOW_ID — ID of the current workflow (set by CircleCI).
  • ⚙️ ckeditor5-dev-ci-notify-circle-status

    Sends a Slack notification summarizing the current CircleCI build/workflow status. For failed builds, fetches the commit author via the GitHub API (works with private repositories).

    Environment variables:

    • CKE5_GITHUB_TOKEN — GitHub token with the repo scope, used to fetch commit author.
    • CKE5_CIRCLE_TOKEN — CircleCI API token used for API calls.
    • CKE5_SLACK_WEBHOOK_URL — Incoming Webhook URL for the Slack channel receiving notifications.

    CircleCI-provided variables:

    • CIRCLE_BRANCH — The number of the current build.
    • CIRCLE_PROJECT_REPONAME — Repository name.
    • CIRCLE_PROJECT_USERNAME — Organization/user name.
    • CIRCLE_SHA1 — Commit SHA of the current build.
    • CIRCLE_WORKFLOW_ID — ID of the current workflow.

    Parameters:

    • --pipeline-id &mdash Value of Circle's << pipeline.number >> parameter (read more).
    • --trigger-repository-slug<org>/<repo> to construct the commit URL when provided with --trigger-commit-hash. Useful when a pipeline was triggered via a different repository.
    • --trigger-commit-hash — Commit SHA to construct the commit URL. Useful when a pipeline was triggered via a different repository.
    • --hide-author"true"/"false" to hide the author in Slack.
  • ⚙️ ckeditor5-dev-ci-trigger-circle-build

    Triggers a new CircleCI pipeline for a specified repository. Commonly used to initiate release or follow-up pipelines from an existing workflow.

    Environment variables:

    • CKE5_CIRCLE_TOKEN — CircleCI API token used for authentication.

    CircleCI-provided variables:

    • CIRCLE_BRANCH — Git branch of the currently processed pipeline.
    • CIRCLE_SHA1 — Full commit SHA of the currently processed pipeline.

    Parameters:

    • --slug — Repository slug (org/name) where the new pipeline will be started.
    • --trigger-repository-slug(Optional) Repository slug (org/name) that triggered the new pipeline. Can be omitted if it matches --slug.
    • --release-branch(Optional) Branch that leads the release process.

Changelog

See the CHANGELOG.md file.

License

Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md file.