Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2fa3d4a
fixed checkmate header
mayankkush1 Oct 15, 2025
c2e38c8
fixed page layout
mayankkush1 Oct 15, 2025
dfaf1f0
Fixed project icon color
mayankkush1 Oct 15, 2025
be023b9
fixed the tests page header and right section
mayankkush1 Oct 15, 2025
d38eb60
fixed filters and columns
mayankkush1 Oct 15, 2025
bcf2026
fixed the scroll issue on test list
mayankkush1 Oct 15, 2025
de642b6
fixed the test list ui
mayankkush1 Oct 15, 2025
32a69f2
updated runs ui, under fix
mayankkush1 Oct 15, 2025
99da1ec
fixed cases and run list
mayankkush1 Oct 16, 2025
5618059
fixed run detail page
mayankkush1 Oct 16, 2025
13894e6
Fixed the run detail ui
mayankkush1 Oct 16, 2025
d6285ed
fixed test detail sliding ui
mayankkush1 Oct 16, 2025
394c5d8
Fixed add result dialog
mayankkush1 Oct 16, 2025
6ec12f7
Fixed the test detail page
mayankkush1 Oct 16, 2025
2648737
Fixed test creation page
mayankkush1 Oct 16, 2025
2a55fe2
added api documentation
mayankkush1 Oct 16, 2025
d33486a
added new hld and setup documents
mayankkush1 Oct 16, 2025
132cee8
Added new hld files
mayankkush1 Oct 16, 2025
0e0e884
restructuring of documentation done
mayankkush1 Oct 16, 2025
774fcbb
restructured the documentation
mayankkush1 Oct 16, 2025
57accb4
updated projects documentation
mayankkush1 Oct 16, 2025
32facb6
fixed tests documentation
mayankkush1 Oct 16, 2025
c5b4754
fixed user guide
mayankkush1 Oct 16, 2025
c2d0d6a
fixed developer guide
mayankkush1 Oct 16, 2025
ea2f547
updated setup document
mayankkush1 Oct 16, 2025
f2d1e3c
documentation complete
mayankkush1 Oct 16, 2025
fa90640
Merge branch 'fixes/api-doc' into feat/ui-fixes
mayankkush1 Oct 16, 2025
3678021
Fixed bug, when section list not updating on project change
mayankkush1 Oct 17, 2025
1aad6d0
migrated documentation from astro to docs
mayankkush1 Oct 30, 2025
debbfbe
Merge branch 'master' of github.com:dream-sports-labs/checkmate into …
mayankkush1 Oct 30, 2025
9957e24
fixed unintented changes
mayankkush1 Oct 30, 2025
ce1f895
Added sample env file
mayankkush1 Oct 30, 2025
4697a1b
updated yarn lock
mayankkush1 Oct 30, 2025
a7fa545
Merge branch 'master' into feat/docusaurus
mayankkush1 Oct 30, 2025
536a233
Update checks.yml
mayankkush1 Oct 30, 2025
40378f6
Merge branch 'master' into feat/docusaurus
mayankkush1 Oct 30, 2025
84ca505
moved deployment to docusaurus
mayankkush1 Oct 30, 2025
3cc0bb7
Merge branch 'feat/docusaurus' of github.com:dream-sports-labs/checkm…
mayankkush1 Oct 30, 2025
27d622d
moved deployment to docusaurus
mayankkush1 Oct 30, 2025
f28915b
fixed documentation
mayankkush1 Nov 3, 2025
b3bbf61
fixed right margin
mayankkush1 Nov 3, 2025
bb90407
Merge branch 'master' of github.com:dream-sports-labs/checkmate into …
mayankkush1 Nov 3, 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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
corepack enable

- name: Install dependencies
run: yarn install --immutable
run: yarn install --frozen-lockfile

- name: Run unit tests
run: yarn unit:test:coverage
Expand Down
54 changes: 54 additions & 0 deletions .github/workflows/documenation-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Docs Deployment

on:
push:
branches: [master]
paths:
- 'website/**'
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Enable Corepack and Set up Yarn
run: |
corepack enable
corepack prepare yarn@4.10.3 --activate

- name: Install Dependencies
working-directory: ./website
run: yarn install --immutable

- name: Build Docusaurus Website
working-directory: ./website
run: yarn build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/build

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy Docusaurus Website to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
9 changes: 9 additions & 0 deletions .github/workflows/documentation-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,18 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
<<<<<<< HEAD
node-version: '20'
cache: 'yarn'
cache-dependency-path: website/yarn.lock
=======
node-version-file: '.nvmrc'

- name: Enable Corepack and Set up Yarn
run: |
corepack enable
corepack prepare yarn@4.10.3 --activate
>>>>>>> 52b83d26f0eb8eff05a84e8d2cba25673de8cc47

- name: Install Dependencies
working-directory: ./website
Expand All @@ -36,8 +42,11 @@ jobs:
- name: Build Docusaurus Website
working-directory: ./website
run: yarn build
<<<<<<< HEAD
=======
env:
GOOGLE_ANALYTICS_TOKEN: ${{ secrets.GOOGLE_ANALYTICS_TOKEN }}
>>>>>>> 52b83d26f0eb8eff05a84e8d2cba25673de8cc47

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@
--chart-5: 340 75% 55%;
}
}

7 changes: 2 additions & 5 deletions app/screens/Login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,8 @@ export const Login = () => {
}

return (
<div
className={
'flex absolute flex-row justify-center items-center h-full -mx-20'
}>
<div className="relative w-screen bg-[#000000] h-full">
<div className="fixed inset-0 flex flex-row justify-center items-center overflow-hidden">
<div className="relative w-full h-full bg-[#000000]">
<div
className="absolute inset-0 transition-opacity duration-300"
style={{
Expand Down
7 changes: 7 additions & 0 deletions website/src/pages/markdown-page.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Markdown page example
---

# Markdown page example

You don't need React to write simple standalone pages.
Binary file added website/static/img/docusaurus-social-card.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/static/img/docusaurus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions website/static/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading