Skip to content

Commit

Permalink
fix: add Jest as runtime dependency
Browse files Browse the repository at this point in the history
Also add a workflow to automatically queue PRs.
  • Loading branch information
rix0rrr committed Dec 31, 2024
1 parent b5ad3fc commit 7acf72e
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitattributes

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

22 changes: 22 additions & 0 deletions .github/workflows/auto-queue.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: 6 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ const repo = configureProject(
}),
);

new pj.github.AutoQueue(repo);

const cliInteg = configureProject(
new yarn.TypeScriptWorkspace({
...genericCdkProps(),
Expand Down Expand Up @@ -181,8 +183,11 @@ const cliInteg = configureProject(
'sinon@^9',
'ts-mock-imports@^1',
'yaml@1',
'jest@^29',
'yargs@^17',
// Jest is a runtime dependency here!
'jest@^29',
'jest-junit@^15',
'ts-jest@^29',
],
devDeps: [
'@types/semver@^7',
Expand Down
10 changes: 10 additions & 0 deletions packages/@aws-cdk-testing/cli-integ/.projen/deps.json

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

2 changes: 2 additions & 0 deletions packages/@aws-cdk-testing/cli-integ/package.json

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

2 changes: 1 addition & 1 deletion yarn.lock

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

0 comments on commit 7acf72e

Please sign in to comment.