We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfba81d commit cc595f0Copy full SHA for cc595f0
live-demo/deploy/.woodpecker.yml
@@ -25,6 +25,10 @@ steps:
25
- cd adminforth
26
- pnpm install
27
- /bin/bash ../live-demo/deploy/buildRelease.sh
28
+ - cd ./spa
29
+ - npm ci
30
+ - /bin/bash ../../live-demo/deploy/typeCheckSPA.sh
31
+ - cd ..
32
- pnpm audit --audit-level=critical
33
- pnpm exec semantic-release
34
live-demo/deploy/typeCheckSPA.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+pnpm type-check 2>&1
4
+type_check_status=$?
5
6
+if [ $type_check_status -ne 0 ]; then
7
+ echo "Type check failed. Exiting with status code $type_check_status"
8
+ exit $type_check_status
9
+fi
0 commit comments