Skip to content

Commit cdae26b

Browse files
committed
ci: Update ci
1 parent 06b378b commit cdae26b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/publish-and-deploy.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
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.
@@ -56,9 +54,8 @@ jobs:
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/**'

src/api/controllers/healthController.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const app = express();
88
const API_PREFIX = `/api/${process.env.API_VERSION || 'v1'}`;
99
app.use(`${API_PREFIX}/health`, healthRoutes);
1010

11+
// Extend test timeout if necessary
1112
describe('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`);

0 commit comments

Comments
 (0)