Skip to content

Commit

Permalink
Merge branch 'main' into test-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Coolczycki committed Mar 26, 2021
2 parents 331f4a7 + 808565e commit 571686d
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 5 deletions.
48 changes: 48 additions & 0 deletions .github/linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Linters

on: pull_request

env:
FORCE_COLOR: 1

jobs:
lighthouse:
name: Lighthouse
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Setup Lighthouse
run: npm install -g @lhci/cli@0.4.x
- name: Lighthouse Report
run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=.
webhint:
name: Webhint
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Setup Webhint
run: |
npm install --save-dev hint@6.0.x
[ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc
- name: Webhint Report
run: npx hint --telemetry=off .
stylelint:
name: Stylelint
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Setup Stylelint
run: |
npm install --save-dev stylelint@13.3.x stylelint-scss@3.17.x stylelint-config-standard@20.0.x stylelint-csstree-validator
[ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.stylelintrc.json
- name: Stylelint Report
run: npx stylelint "**/*.{css,scss}"
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
test.md
test.md
test-branch
node_modules/
main
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<h2><b>Week 1 HTML & CSS project</b></h2>
<hr>
<p>The assignment is to clone a New York Times article page.</p>
Expand Down Expand Up @@ -55,3 +56,39 @@ Give a ⭐️ if you like this project!<hr>
<hr>
This project is MIT licensed.

=======
#Week1-project

Major languages: HTML ; CSS

Frameworks: -

Technologies used: -

Live Demo: -

Live Demo Link:

Author
👤 Author

GitHub: @Loosescrew022

Twitter: @P_Rutkowski022

LinkedIn: https://www.linkedin.com/in/piotr-rutkowski-145004207/

🤝 Contributing
Contributions, issues, and feature requests are welcome!

Feel free to check the issues page.

Show your support
Give a ⭐️ if you like this project!

Acknowledgments
Hat tip to anyone whose code was used
Inspiration
etc
📝 License
This project is MIT licensed.
3 changes: 3 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -832,4 +832,7 @@ figure {
font-weight: 500;
line-height: 34px;
text-decoration: none;

header {
color: blue;
}
6 changes: 2 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<link rel="icon" href="https://symbols-electrical.getvecta.com/stencil_97/70_the-new-york-times-icon.4f402b8393.png">
</head>
<body>


<!--Top navigation bar here -->

Expand Down Expand Up @@ -581,10 +582,7 @@ <h4 class="bold"> Most Popular </h4>
</ul>
</div>





<header>Hello World</header>


</body>
Expand Down

0 comments on commit 571686d

Please sign in to comment.