Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
283cee2
Final enhancements to the feedback page.
vamsikrishna1704 Oct 11, 2025
b861721
fix: comments with correct styling
ShravyaKudlu Feb 22, 2026
0f92127
fix: final fix for comments.jsx
ShravyaKudlu Feb 22, 2026
59ff545
refactor: some code for feedback.jsx
ShravyaKudlu Feb 22, 2026
b295464
refactor: some code for feedback.module.css
ShravyaKudlu Feb 22, 2026
177610a
refactor: some code for feedback.module.css
ShravyaKudlu Feb 22, 2026
7ef6c16
refactor: final feedback.module.css
ShravyaKudlu Feb 22, 2026
33a9f71
refactor: final final feedbackmodule.module.css
ShravyaKudlu Feb 22, 2026
1bf22ec
refactor: modify activity.jsx and module.css
ShravyaKudlu Feb 22, 2026
369e23a
fix: modify activity.jsx and module.css, for dark mode visibilty
ShravyaKudlu Feb 22, 2026
ef46489
fix: spacing for parent container
ShravyaKudlu Feb 22, 2026
b116de3
WORKING
ShravyaKudlu Feb 22, 2026
ff08587
Sonarcube errors fixed
ShravyaKudlu Feb 22, 2026
e256baa
refactor: rename activity - activityFeedback
ShravyaKudlu Feb 22, 2026
820eb5e
fix: routes.jsx
ShravyaKudlu Feb 22, 2026
51eb23e
merge: sync with origin/development
ShravyaKudlu Apr 5, 2026
1e52336
Merge branch 'development' into shravyakudlu_feebbackTab_4199
ShravyaKudlu Apr 25, 2026
5bd07e5
Merge branch 'development' into shravyakudlu_feebbackTab_4199
ShravyaKudlu May 2, 2026
bf8d549
fix: test_activity_feedback
ShravyaKudlu May 3, 2026
d6b076c
Merge remote-tracking branch developement into shravyakudlu_feebbackT…
ShravyaKudlu Jun 21, 2026
7492783
fix: remove package-lock.json and sync yarn.lock to fix CI build failure
ShravyaKudlu Jun 21, 2026
4efd692
fix: correct corrupted @jest/expect-utils entry in yarn.lock to fix C…
ShravyaKudlu Jun 21, 2026
a604377
fix: correct corrupted jest-message-util entry in yarn.lock and clear…
ShravyaKudlu Jun 21, 2026
77f9fa1
merge: resolve merge conflicts from development into shravyakudlu_fee…
ShravyaKudlu Jun 21, 2026
aedf3a0
fix: tests after merge
ShravyaKudlu Jun 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions .github/workflows/pull_request_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:
run: |
# Get list of changed CSS files in this PR
changed_files=$(git diff --name-only --diff-filter=ACMR origin/${{ github.base_ref }}...HEAD | grep '\.css$' || true)

if [ -z "$changed_files" ]; then
echo "No CSS files changed in this PR"
exit 0
fi

echo "Changed CSS files:"
echo "$changed_files"

# Check if any of the changed files are disallowed
disallowed=$(echo "$changed_files" | grep -vE '(\.module\.css$|index\.css$)' || true)

if [ -n "$disallowed" ]; then
echo "❌ Disallowed CSS file detected! Only '.module.css' (or 'index.css') files are permitted."
echo "The following files violate the CSS Module policy:"
Expand All @@ -43,16 +43,17 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Unit Tests for Changed Files Only
run: NODE_OPTIONS="--max-old-space-size=4096" yarn run test:changed
- name: Run Lint
run: yarn run lint
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Clear Yarn Cache
run: yarn cache clean
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Unit Tests for Changed Files Only
run: NODE_OPTIONS="--max-old-space-size=4096" yarn run test:changed
- name: Run Lint
run: yarn run lint
278 changes: 0 additions & 278 deletions src/components/CommunityPortal/Activities/activityId/Activity.jsx

This file was deleted.

Loading
Loading