Skip to content

Commit

Permalink
Merge pull request #11 from krckyboy/#10
Browse files Browse the repository at this point in the history
#10 Adding type error to check test job.
  • Loading branch information
krckyboy authored Jan 14, 2024
2 parents a27cbeb + dcaa58a commit ca78a9b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 31 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint Code Base

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0

- name: Install Dependencies
run: npm ci
working-directory: ./next

- name: Run Lint
run: npm run lint
working-directory: ./next
25 changes: 0 additions & 25 deletions .github/workflows/super-linter.yml

This file was deleted.

8 changes: 2 additions & 6 deletions next/src/components/blog-post-item/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@
background-color: lighten($color-background, 3%);
border-radius: .35rem;
border: none;

.heading {
font-weight: 300;
}
}

.heading {
font-weight: 400;
font-size: clamp(1.2rem, 1.3vw, 1.6rem);
font-weight: 500;
font-size: clamp(1.1rem, 1.1vw, 1.3rem);
}

.date {
Expand Down

0 comments on commit ca78a9b

Please sign in to comment.