File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 2222 - name : Checkout code
2323 # Checks out the repository code.
2424 uses : actions/checkout@v4
25- with :
26- fetch-depth : 2
2725
2826 - name : Set up Docker Buildx
2927 # Prepares Docker Buildx for building multi-platform images.
5654 - name : Detect changed paths
5755 id : changes
5856 uses : dorny/paths-filter@v3
57+ # todo: find a way to detect changes within same branch, for now do not push to dev/prod in parallel
5958 with :
60- base : HEAD^
61- ref : HEAD
6259 filters : |
6360 api:
6461 - 'src/api/**'
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const app = express();
88const API_PREFIX = `/api/${ process . env . API_VERSION || 'v1' } ` ;
99app . use ( `${ API_PREFIX } /health` , healthRoutes ) ;
1010
11+ // Extend test timeout if necessary
1112describe ( 'Health Check API' , ( ) => {
1213 it ( 'should return 200 and healthy status for /healthz' , async ( ) => {
1314 const response = await request ( app ) . get ( `${ API_PREFIX } /health/healthz` ) ;
You can’t perform that action at this time.
0 commit comments