-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 1-code-area
- Loading branch information
Showing
15 changed files
with
236 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
name: Build and Test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node: [ 20 ] | ||
|
||
name: Node ${{ matrix.node }} sample | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Building rules and tests | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm run test-ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,44 @@ | ||
<div class="container-fluid border-1 border-top border-secondary"> | ||
<div class="w-100 divider"></div> | ||
<div class="container-fluid"> | ||
<div class="col-12"> | ||
<div class="row p-2 gap-2"> | ||
<div class="col-12 text-secondary"> | ||
<div class="d-flex align-items-center gap-2 mb-1"> | ||
<img id="logo" src="code-chef.svg" /> | ||
<h3 class="fs-5 m-0">CodeChef v{{version}}</h3> | ||
<h3 class="fs-6 m-0">CodeChef v{{version}}</h3> | ||
</div> | ||
<p> | ||
<p class="fs-md"> | ||
<a href="https://github.com/IPdotSetAF/CodeChef">Open-source</a> developer utility website. Made to | ||
help software developers skip repetetive and boring tasks and automate what could be automated. | ||
<br /> | ||
Everyone is welcome to contribute, give feedback or report bugs. | ||
</p> | ||
</div> | ||
<div class="col-12 border-1 border-top border-secondary"></div> | ||
<div class="col-12 divider"></div> | ||
<div class="col-12 text-secondary"> | ||
<div class="d-flex gap-2"> | ||
<label>© 2024 <a href="https://ipdotsetaf.ir">IPdotSetAF</a>. Licensed under the GPL-3.0 | ||
License.</label> | ||
<div class="flex-fill"></div> | ||
<a class="btn-footer btn-circle btn-hover bi bi-telephone fs-5" title="Call Me" href="tel:+989387016860"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-globe2 fs-5" title="Website" href="https://ipdotsetaf.ir"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-telegram fs-5" title="Telegram" href="https://t.me/IPdotSetAF"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-discord fs-5" title="Discord" href="https://discord.com/invite/BTZDf7fs"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-linkedin fs-5" title="Linkedin" href="https://linkedin.com/in/ipaf"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-github fs-5" title="Github" href="https://github.com/IPdotSetAF"></a> | ||
<div class="row"> | ||
<div class="col-md-6 d-flex justify-content-center justify-content-md-start"> | ||
<label class="fs-sm">© 2024 <a href="https://ipdotsetaf.ir">IPdotSetAF</a>. Licensed under the | ||
GPL-3.0 | ||
License.</label> | ||
</div> | ||
<div class="col-md-6 d-flex justify-content-center justify-content-md-end gap-2"> | ||
<a class="btn-footer btn-circle btn-hover bi bi-telephone fs-5" title="Call Me" | ||
href="tel:+989387016860"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-globe2 fs-5" title="Website" | ||
href="https://ipdotsetaf.ir"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-telegram fs-5" title="Telegram" | ||
href="https://t.me/IPdotSetAF"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-discord fs-5" title="Discord" | ||
href="https://discord.com/invite/BTZDf7fs"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-linkedin fs-5" title="Linkedin" | ||
href="https://linkedin.com/in/ipaf"></a> | ||
<a class="btn-footer btn-circle btn-hover bi bi-github fs-5" title="Github" | ||
href="https://github.com/IPdotSetAF"></a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="footer-base" class="row"></div> | ||
<div id="footer-base" class="divider row"></div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
<div id="header" class="d-flex"> | ||
<div class="col-4 h-100"> | ||
<a class="w-100 h-100 d-flex justify-content-start gap-2 align-items-center ps-2" [routerLink]="['/','home']"> | ||
<img src="code-chef.svg" /> | ||
<h1 class="fs-3 m-0">CodeChef</h1> | ||
</a> | ||
</div> | ||
<div class="col-4 h-100 d-flex justify-content-center"> | ||
<div id="header"> | ||
<div class="d-flex h-100"> | ||
<div class="col-4 h-100"> | ||
<a class="w-100 h-100 d-flex justify-content-start gap-2 align-items-center ps-2" | ||
[routerLink]="['/','home']"> | ||
<img src="code-chef.svg" /> | ||
<h1 class="fs-3 m-0">CodeChef</h1> | ||
</a> | ||
</div> | ||
<div class="col-4 h-100 d-flex justify-content-center"> | ||
|
||
</div> | ||
<div class="col-4 h-100 d-flex align-items-center justify-content-end pe-2"> | ||
<a class="btn-header-round btn-hover btn-circle" href="https://ipdotsetaf.ir" title="IPdotSetAF"> | ||
<img id="ipaf" src="ipaf.svg" /> | ||
</a> | ||
<a class="bi bi-github fs-2 btn-header-round btn-hover btn-circle" | ||
href="https://github.com/IPdotSetAF/CodeChef" title="CodeChef Github"></a> | ||
</div> | ||
</div> | ||
<div class="col-4 h-100 d-flex align-items-center justify-content-end pe-2"> | ||
<a class="btn-header-round btn-hover btn-circle" href="https://ipdotsetaf.ir" title="IPdotSetAF"> | ||
<img id="ipaf" src="ipaf.svg" /> | ||
</a> | ||
<a class="bi bi-github fs-2 btn-header-round btn-hover btn-circle" | ||
href="https://github.com/IPdotSetAF/CodeChef" title="CodeChef Github"></a> | ||
</div> | ||
<div class="col-12 divider"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.