-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MG-8 - Refactor the Landing Page Components (#17)
* test: deployment with new pipeline Signed-off-by: Musilah <nataleigh.nk@gmail.com> * refactor components Signed-off-by: Musilah <nataleigh.nk@gmail.com> * reverse homepage change Signed-off-by: Musilah <nataleigh.nk@gmail.com> * fix favicon Signed-off-by: Musilah <nataleigh.nk@gmail.com> * add accredition for illustrations Signed-off-by: Musilah <nataleigh.nk@gmail.com> * fix hero and header Signed-off-by: Musilah <nataleigh.nk@gmail.com> * resize hero and refactor further Signed-off-by: Musilah <nataleigh.nk@gmail.com> * update font and features Signed-off-by: Musilah <nataleigh.nk@gmail.com> * resolve comments Signed-off-by: Musilah <nataleigh.nk@gmail.com> * use sheets instead Signed-off-by: Musilah <nataleigh.nk@gmail.com> * fix font sizes and footer orientation Signed-off-by: Musilah <nataleigh.nk@gmail.com> * add hidden sheet title Signed-off-by: Musilah <nataleigh.nk@gmail.com> --------- Signed-off-by: Musilah <nataleigh.nk@gmail.com>
- Loading branch information
Showing
50 changed files
with
5,296 additions
and
633 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,44 @@ | ||
name: Test Deployment Workflow | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test-deploy: | ||
name: Test Build, Lint, and Local Deployment | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "npm" | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run lint check | ||
run: npm run lint | ||
|
||
- name: Build project | ||
run: npm run build | ||
|
||
- name: Serve locally | ||
run: npx serve@latest out -l 3000 & | ||
|
||
- name: Verify local deployment | ||
run: curl -s http://localhost:3000 | grep "<title>" || exit 1 | ||
|
||
- name: Stop server | ||
run: pkill serve |
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
Oops, something went wrong.