We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91054b5 commit 216c8d5Copy full SHA for 216c8d5
.github/workflows/blueprints-unit-tests.yml
@@ -0,0 +1,27 @@
1
+name: blueprints-cdk-tests
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ blueprints-cdk-tests:
10
+ name: Run CDK tests for all blueprints
11
+ runs-on: ubuntu-latest
12
+ defaults:
13
+ run:
14
+ shell: bash
15
+ working-directory: scripts
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - uses: actions/setup-node@v3
19
+ with:
20
+ node-version: 19
21
+ cache: npm
22
+ cache-dependency-path: package-lock.json
23
24
+ - name: Install dependencies
25
+ run: npm ci
26
+ - name: Run unit tests
27
+ run: ./run-all-cdk-tests.sh
.vscode/settings.json
@@ -0,0 +1,6 @@
+{
+ "cSpell.words": [
+ "bcuser",
+ "usermod"
+ ]
+}
scripts/alltests.sh scripts/run-all-cdk-tests.sh
0 commit comments