Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
87d3491
FAQ components
oliviahyw Nov 12, 2024
8a52dd5
FAQ frontend
oliviahyw Nov 14, 2024
1367fa0
history tracking
oliviahyw Nov 14, 2024
52dfffa
Finished frontend
oliviahyw Feb 2, 2025
10144ea
FAQ search
oliviahyw Mar 9, 2025
9ba2b49
styling
oliviahyw Mar 9, 2025
b2c86ed
unanswered questions
oliviahyw Mar 15, 2025
872497f
Merge branch 'development' into Haoyue-faq-tool
oliviahyw Mar 20, 2025
526fab5
Fixed eslint errors
oliviahyw Mar 20, 2025
9d1114d
Fixed eslint errors
oliviahyw Mar 20, 2025
7244049
Fixed header errors
oliviahyw Mar 20, 2025
d45c721
Fixed eslint errors
oliviahyw Mar 20, 2025
d9f6b6f
use effect memory leak fix
oliviahyw Mar 20, 2025
89393d6
Built the frontend chart
oliviahyw Apr 5, 2025
30c50e0
Added time filter
oliviahyw Apr 18, 2025
a852d0b
Merge branch 'development' into Haoyue-faq-tool
oliviahyw Apr 30, 2025
1460cc1
Merge branch 'development' into haoyue-job-posting-age-bar-chart
oliviahyw May 7, 2025
c53c185
netlify
oliviahyw May 7, 2025
9a1ef55
Merge branch 'haoyue-job-posting-age-bar-chart' of https://github.com…
oliviahyw May 7, 2025
5637481
Added figma
Manoj99Q May 7, 2025
5e58a3e
Figma fix
Manoj99Q May 7, 2025
0befbd6
Merge pull request #3489 from OneCommunityGlobal/haoyue-job-posting-a…
one-community May 9, 2025
0822f03
install jest
oliviahyw May 9, 2025
8c37f44
Merge branch 'Haoyue-faq-tool' of https://github.com/OneCommunityGlob…
oliviahyw May 9, 2025
8587b2c
Merge branch 'development' into haoyue-faq-tool
oliviahyw May 9, 2025
5760147
removed jest
oliviahyw May 9, 2025
44b49ec
Update pull_request_test.yml
oliviahyw May 9, 2025
32599aa
modified test scripts
oliviahyw May 9, 2025
64ffbc0
Merge branch 'Haoyue-faq-tool' of https://github.com/OneCommunityGlob…
oliviahyw May 9, 2025
4c8d808
modified script
oliviahyw May 9, 2025
2c70a4f
Update pull_request_test.yml
oliviahyw May 9, 2025
9b0ce87
Update pull_request_test.yml
oliviahyw May 9, 2025
72732c6
Merge pull request #3494 from OneCommunityGlobal/Manoj_Limit_Link_Typ…
one-community May 9, 2025
278cb3d
Update pull_request_test.yml
oliviahyw May 9, 2025
2994e70
Merge pull request #3118 from OneCommunityGlobal/Haoyue-faq-tool
one-community May 9, 2025
bdfda61
fix(tasks): resolve issue preventing new tasks from being added
Ankuriboh May 9, 2025
e8f79d5
Merge pull request #3500 from OneCommunityGlobal/newell-fix-goldmine
one-community May 9, 2025
d5800d0
UI issue fixes
CodewithKoushica May 9, 2025
825282b
Merge pull request #3504 from OneCommunityGlobal/Koushica_hotfixes
one-community May 9, 2025
e3b0815
user profile and dashboard ui issue fixes
CodewithKoushica May 9, 2025
a90555d
Merge pull request #3505 from OneCommunityGlobal/Koushica_hotfixes
one-community May 9, 2025
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
8 changes: 5 additions & 3 deletions .github/workflows/pull_request_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 14
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Unit Tests
run: npm test
- name: Run Unit Tests for Changed Files Only
run: npm run test:changed
- name: Run Lint
run: npm run lint
run: npm run lint
Loading