Skip to main content

A TypeScript library for creating and managing GitHub Actions workflows using Constructs, enabling type-safe and modular CI/CD automation.

Project description

🚧 GitHub Actions CDK

github-actions-cdk is a TypeScript library that simplifies the creation and management of GitHub Actions workflows using Constructs. With this library, developers can define workflows in a structured and type-safe manner, making it easier to automate CI/CD pipelines on GitHub. It also includes Python bindings for developers who prefer working in Python.

Features

  • Type-Safe Workflows: Leverage TypeScript's strong typing to define your GitHub Actions workflows and ensure correctness.
  • Python Bindings: Access the same powerful constructs and features in Python, allowing seamless integration for Python developers.
  • Modular Design: Easily create and manage jobs, triggers, and options for your workflows.

Installation

To get started with github-actions-cdk, install the package using npm or yarn for TypeScript, or pip for Python:

TypeScript

npm install github-actions-cdk

or

yarn add github-actions-cdk

Python

pip install github-actions-cdk

Getting Started

Basic Usage (TypeScript)

Here's a simple example of how to create a GitHub Actions workflow using github-actions-cdk in TypeScript::

import { PermissionLevel, Project } from 'github-actions-cdk';
import { CheckoutV4, SetupNodeV4 } from 'github-actions-cdk/actions';

const project = new Project({
  //additionalChecks: true,
});

const workflow = project.addWorkflow("build", {
  name: "Build",
  triggers: {
    push: { branches: ["main"] },
    workflowDispatch: {},
  },
  permissions: {
    contents: PermissionLevel.READ,
  },
});

const job = workflow.addJob("build", {
  env: {
    CI: "true",
  },
});

new CheckoutV4(job, "checkout", {
  name: "Checkout Code",
});

const setupNode = new SetupNodeV4(job, "setup-node", {
  name: "Set up Node.js",
  nodeVersion: "20.x",
});

job.addOutput("node-version", setupNode.outputs.nodeVersion);

project.synth();

Basic Usage (Python)

Here's how to create a GitHub Actions workflow using github-actions-cdk in Python:

from github_actions_cdk import Project, PermissionLevel
from github_actions_cdk.actions import CheckoutV4, SetupNodeV4

project = Project(
    #additional_checks=True,
)

workflow = project.add_workflow(
    id="build",
    name="Build",
    triggers={
        "push": {
            "branches": ["main"],
        }
    },
    permissions={
        "contents": PermissionLevel.READ,
    }
)

job = workflow.add_job(
    id="build",
    env={
        "CI": "true",
    },
)

CheckoutV4(
    scope=job,
    id="checkout",
    name="Checkout Code",
)

setup_node = SetupNodeV4(
    scope=job,
    id="setup-node",
    name="Set up Node.js",
    node_version="14.x",
)

job.add_output("node-version", setup_node.outputs.node_version)

project.synth()

Contributing

Contributions are welcome! Please read the CONTRIBUTING.md for details on how to get involved.

License

This project is licensed under the MIT License. See the LICENSE file for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

github_actions_cdk-0.0.17.tar.gz (353.4 kB view details)

Uploaded Source

Built Distribution

github_actions_cdk-0.0.17-py3-none-any.whl (351.2 kB view details)

Uploaded Python 3

File details

Details for the file github_actions_cdk-0.0.17.tar.gz.

File metadata

  • Download URL: github_actions_cdk-0.0.17.tar.gz
  • Upload date:
  • Size: 353.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for github_actions_cdk-0.0.17.tar.gz
Algorithm Hash digest
SHA256 59649bf3606d0fb670d72a77fd5ab8e775d0f15e15374810593b09467fc94239
MD5 5313fd0861c81d291a411df5cecad7a5
BLAKE2b-256 d96eba6c253a71b77822851f72b4e7fccd037e1b17c1cfca99227e4d6056e60e

See more details on using hashes here.

File details

Details for the file github_actions_cdk-0.0.17-py3-none-any.whl.

File metadata

File hashes

Hashes for github_actions_cdk-0.0.17-py3-none-any.whl
Algorithm Hash digest
SHA256 72582eb35e1a255182d3352d17d10341917d962beef7fcbd317b80c2400068f1
MD5 1d8be53e6ebdb3b0c5a2848afb15b5f9
BLAKE2b-256 b355347dc4715346c755e6fbdc77f3c90ab73c7fd00421c4705f5266526e6480

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page