Skip to content
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 58 additions & 0 deletions .github/workflows/sec-checks.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .projen/files.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { JsiiProject } from 'projen/lib/cdk';
import { Job } from 'projen/lib/github/workflows-model';
import { ReleaseTrigger } from 'projen/lib/release';
import { BundleKics } from './projenrc';
import { BundleKics, SecurityChecks } from './projenrc';


const project = new JsiiProject({
Expand Down Expand Up @@ -39,7 +39,7 @@ project.gitignore.exclude('bin');
project.gitignore.exclude('assets');

// Super hacky way to add a step to a workflow that projen itself generates
const buildWorkflow = project.github?. tryFindWorkflow('build');
const buildWorkflow = project.github?.tryFindWorkflow('build');

if (buildWorkflow != null) {
const buildJob = buildWorkflow.getJob('build');
Expand All @@ -63,7 +63,7 @@ if (buildWorkflow != null) {
}

// Super hacky way to add a step to a workflow that projen itself generates
const releaseWorkflow = project.github?. tryFindWorkflow('release');
const releaseWorkflow = project.github?.tryFindWorkflow('release');

if (releaseWorkflow != null) {
const releaseJob = releaseWorkflow.getJob('release');
Expand All @@ -87,6 +87,7 @@ if (releaseWorkflow != null) {
}

new BundleKics(project);
new SecurityChecks(project);
project.synth();

function isJob(job: any): job is Job {
Expand Down
19 changes: 0 additions & 19 deletions cdk.out/Stack.assets.json

This file was deleted.

Loading