cdk-aws-lambda-powertools-blueprint 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "restricted",
8
+ "baseBranch": "main",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
+ }
@@ -0,0 +1,27 @@
1
+ version: 2
2
+
3
+ updates:
4
+ - directory: /
5
+ package-ecosystem: github-actions
6
+ rebase-strategy: auto
7
+ schedule:
8
+ interval: "monthly"
9
+
10
+ - directory: /
11
+ package-ecosystem: npm
12
+ rebase-strategy: auto
13
+ schedule:
14
+ interval: "monthly"
15
+ groups:
16
+ typescript:
17
+ patterns:
18
+ - "@types/*"
19
+ - typescript
20
+ aws-cdk:
21
+ patterns:
22
+ - aws-cdk-lib
23
+ - constructs
24
+ jsii:
25
+ patterns:
26
+ - jsii
27
+ - jsii-pacmak
@@ -0,0 +1,21 @@
1
+ on: pull_request
2
+
3
+ jobs:
4
+ checks:
5
+ runs-on: ubuntu-slim
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ command:
10
+ - build
11
+ - test
12
+ - lint
13
+ steps:
14
+ - uses: actions/checkout@v6
15
+ - uses: actions/setup-node@v6
16
+ with:
17
+ node-version-file: .nvmrc
18
+ - name: Install dependencies
19
+ run: npm ci
20
+ - name: Run ${{ matrix.command }}
21
+ run: npm run ${{ matrix.command }}
@@ -0,0 +1,21 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+ concurrency: ${{ github.workflow }}-${{ github.ref }}
7
+
8
+ jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v6
13
+ - uses: actions/setup-node@v6
14
+ with:
15
+ node-version-file: .nvmrc
16
+ - name: Install dependencies
17
+ run: npm ci
18
+ - name: Create Release Pull Request
19
+ uses: changesets/action@v1
20
+ env:
21
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}