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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@whop-sdk/checkly-action

v0.2.0-canary.5

Published

Sync a repository with a Checkly group.

Downloads

31

Readme

@whopio/checkly-action

Github Action + npm package that allows to sync a Checkly check group with a github repository. Features TypeScript tests, .har and .json file bundling and a local test runner.

Setup

  1. Create an empty repository or a new package in an already existing monorepo
    1. create a file called checkly.config.json in this directory
    2. also create a folder named tests, this folder is where all the checks live.
    3. add .checkly to your .gitignore
  2. Install this package
npm i @whop-sdk/checkly-action --save-dev
yarn add @whop-sdk/checkly-action --dev
pnpm i @whop-sdk/checkly-action --save-dev
  1. (Optional) for TypeScript support add @whop-sdk/checkly-action to compilerOptions.types in your tsconfig:
{
  "compilerOptions": {
    "target": "es2016",
    "module": "esnext",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "skipLibCheck": true,
    "types": ["@whop-sdk/checkly-action", "node"]
  }
}

Github Action

Example

name: Sync Check Group

on:
  push:
    branches: [main]
    paths:
      - examples/basic/**/*

jobs:
  sync:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - uses: pnpm/[email protected]
        with:
          version: 7
      - name: Setup Node.js
        uses: actions/setup-node@v3
        with:
          node-version: "16"
          cache: "pnpm"
      - name: Install Node Modules
        run: pnpm i
      - uses: whopio/[email protected]
        with:
          checkly-token: ${{ secrets.CHECKLY_TOKEN }}
          checkly-group: ${{ secrets.CHECKLY_GROUP }}
          checkly-account: ${{ secrets.CHECKLY_ACCOUNT }}
          directory: ./examples/basic

Inputs

| name | description | required | default | | --------------- | --------------------------------------------------------------------- | :------: | :-----: | | checkly-token | Your Checkly API token | X | | | checkly-group | Checkly Group to sync with | X | | | checkly-account | Checkly Account ID | X | | | directory | tests root | | ./ | | s3-key | s3 secret for large checks | | | | s3-key-id | key id matching s3-key | | | | s3-bucket | name of the s3 bucket to upload checks to | | checkly | | s3-endpoint | target s3 endpoint | | | | s3-region | s3 region | | auto | | max-script-size | the maximum amount of characters in a check before s3 loading is used | | |

S3 Integration for supporting large scripts

Checkly only allows for around 1.000.000 characters in a test script. To bypass this restriction this library supports uploading the scripts to a s3 bucket and then uploading a loader that downloads the script from s3 and then executes it.

As uploading scripts with more than 300.000 characters already produces errors when pushing it to Checkly, by default this action will use the s3 loader for scripts with 100.000 chars or more. This setting can be controlled through the max-script-size input of the Action.

In order for this to work you will need to supply the s3 related inputs to the Action.

Writing Checks

Every check file can export a config that defined the checks parameters on checkly and export the check logic as the default export. The check function receives a context parameter that contains the browser and playwright context instances by default and can be extended using the Setup and Teardown feature.

Basic Check

import { DefaultContext, CheckConfig } from "@whop-sdk/checkly-action";

export const config: CheckConfig = {
  activated: false,
  muted: true,
  doubleCheck: true,
  shouldFail: false,
};

export default async ({ browser }: DefaultContext) => {
  const page = await browser.newPage();
  await page.goto("https://google.com");
};

Setup and Teardown Hooks

Next to normal checks every directory can contain _before and _after files that run before and after each test in the directory and have the ability to modify the context passed to the final testing script

Execution Order

Assuming we have the following file structure

tests
|-sub-task
| |-_after.ts
| |-_before.ts
| |-example.ts
|-_after.ts
|-_before.ts

the final execution order when tests/sub-task/example.ts is being ran is the following:

/tests/_before.ts
/tests/sub-task/_before.ts
/tests/sub-task/example.ts
/tests/sub-task/_after.ts
/tests/_after.ts

TypeScript

To infer the context of a test, _before or _after file a helper type is exported from this library. Assuming we have the following file structure:

tests
|-_before.ts
|-example.ts

The type of the context inside of example.ts can be inferred like this:

import { InferContext } from "@whop-sdk/checkly-action";
import type before from "./_before";

export default async (ctx: InferContext<typeof before>) => {};

Note: The before import has to be targeting the last _before file executed before the current test/hook.

Using .har and .json files

.har and .json files are bundled into the js output. To use the routeFromHAR feature of playwright a helper from the @whop-sdk/checkly-helpers package can be utilised. (The helpers package needs to be installed first). The default routeFromHAR feature is also disabled on Checkly's platform

// tests
// |-example.har
// |-example.ts

// example.ts:
import { DefaultContext, CheckConfig } from "@whop-sdk/checkly-action";
import { routeFromHAR } from "@whop-sdk/checkly-helpers";
import archive from "./example.har";

export default async ({ context }: DefaultContext) => {
  // on the entire context
  await routeFromHAR(context, archive);
  // or on a single page
  const page = await context.newPage();
  await routeFromHAR(page, archive);
};

Running Checks locally

This library includes a CLI util that allows for running tests locally.

Setup

package.json setup

{
  "scripts": {
    "test": "checkly-action run"
  }
}

Run all Checks

pnpm run test

Run filtered Checks

Filters consider the tests directory the root and ignore the file extension.

tests
|-sub-task
| |-sub-task
| | |-example5.ts
| | |-example6.ts
| |-example3.ts
| |-example4.ts
|-example1.ts
|-example2.ts

This will only run tests/example1.ts

pnpm run test --filter example1

The filter uses glob patterns to match, so this would run all tests in tests/sub-task, excluding any further nested tests:

pnpm run test --filter sub-task/*

To include the nested tests too:

pnpm run test --filter sub-task/**/*

Lastly, multiple filters can be passed resulting in the following command running tests/example1.ts and all tests in tests/sub-task:

pnpm run test --filter example1 --filter sub-task/**/*

Using .env files

To supply the local tests with Environment Variables, a .env file can be created next to the package.json