Skip to content

Commit f622a42

Browse files
debug
1 parent 1551626 commit f622a42

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/reactjs_ci_cd.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4
1616

17+
# Ensure we are in the root directory of the repo (DEBUG)
18+
- name: Ensure we're in the root directory
19+
run: |
20+
echo "Current working directory:"
21+
pwd # This prints the current directory to the logs, confirming we're in the root
22+
1723
- name: Set up Node.js
1824
uses: actions/setup-node@v4
1925
with:

frontend/src/Components/Contact.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import '../Styles/Contact.css'
22
export default function Contact() {
33
return (
44
<>
5-
<section class="contact-header">
5+
<section className="contact-header">
66
<div className="container">
77
<h1 className="text-center fw-bold">Contact Us</h1>
88
<p className="text-center text-muted">

0 commit comments

Comments
 (0)