UNPKG

@bifravst/ci

Version:

Sets up the permissions in our CI account for all repositories in this account to be able to use it for CI runs.

9 lines (8 loc) 202 B
import { App } from 'aws-cdk-lib'; import { CIStack } from './CIStack.js'; export class CIApp extends App { constructor(name, args) { super(); new CIStack(this, name, args); } }