Skip to content

Commit aec391d

Browse files
committed
run prettier formatter
1 parent 3334605 commit aec391d

27 files changed

+146
-73
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ updates:
44
directory: "/"
55
schedule:
66
interval: daily
7-
open-pull-requests-limit: 200
7+
open-pull-requests-limit: 200

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
- reopened
10+
workflow_call:
11+
12+
jobs:
13+
build:
14+
name: Code standards & build
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 3
17+
18+
strategy:
19+
matrix:
20+
node-version: [18.x]
21+
22+
steps:
23+
- name: "☁️ Checkout repository"
24+
uses: actions/checkout@v4
25+
26+
- name: "🔧 Setup Node.js ${{ matrix.node-version }}"
27+
uses: actions/setup-node@v4
28+
with:
29+
node-version: ${{ matrix.node-version }}
30+
cache: "npm"
31+
32+
- name: "📦 Install dependencies"
33+
run: npm ci
34+
35+
- name: "🔎 Lint code"
36+
run: npm run lint
37+
38+
- name: "📝 Checking code format"
39+
run: npm run format:check
40+
41+
- name: "🚀 Build the project"
42+
run: npm run build

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ dist/
55
.output/
66
docs/
77
new/
8+
src/content/astro
9+
src/content/original-posts
810

911
# jetbrains
1012
.idea/*

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ export const SOCIALS: SocialObjects = [
3737
href: "https://www.linkedin.com/in/paultoconnell/",
3838
linkTitle: `${SITE.title} on LinkedIn`,
3939
active: true,
40-
}
40+
},
4141
];

src/content/blog/2023/2023-02-22-docker-meetup-dublin.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: "Dublin Docker Meetup"
33
pubDatetime: 2023-02-23T00:00:00Z
44
author: emeraldjava
5-
description: 'Docker Meetup Feb 2023'
6-
tags:
5+
description: "Docker Meetup Feb 2023"
6+
tags:
77
- docker
88
slug: 2023-02-23-docker-meetup
99
---
@@ -26,8 +26,7 @@ microservices vs container
2626
use nginx unit to run mutliple processes within a single docker container
2727

2828
config
29+
2930
- listeners
3031
- routes
3132
- applications
32-
33-

src/content/blog/2023/2023-04-07-goodbye-gatsby-hello-hugo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: 'Moving to Hugo'
2+
title: "Moving to Hugo"
33
pubDatetime: 2023-04-07T10:51:26Z
44
author: ""
55
keywords: ["hugo"]
66
cover: ""
7-
description: 'Goodby Gatsby, Hello Hugo'
7+
description: "Goodby Gatsby, Hello Hugo"
88
slug: 2023-04-07-moving-to-hugo
99
---
1010

src/content/blog/2023/2023-04-08-kubernetes-starter.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Kubernetes on Docker Desktop starter'
2+
title: "Kubernetes on Docker Desktop starter"
33
pubDatetime: 2023-04-08T18:22:26Z
44
author: ""
55
keywords: ["kubernetes", "docker"]
@@ -54,5 +54,4 @@ add the UI
5454

5555
https://www.docker.com/blog/creating-kubernetes-extensions-in-docker-desktop/
5656

57-
58-
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml
57+
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml

src/content/blog/2023/2023-07-22-Register-Serenity-Listener.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ Create a new class which will be the custom listener, eg. MyCustomListener this
1414

1515
# Step 2 - Regster the Service Locator
1616

17-
1 In the resources folder of the project you are using create a directory META-INF folder
18-
2. Add a file called 'net.thucydides.core.steps.StepListener'
19-
3. Add the Listener class name as the file content.
17+
1 In the resources folder of the project you are using create a directory META-INF folder 2. Add a file called 'net.thucydides.core.steps.StepListener' 3. Add the Listener class name as the file content.
2018

2119
/META-INF/net.thucydides.core.steps.StepListener
2220
- a.b.c.MyCustomListener
2321

24-
This allows the ServiceLocator to find and inject the Listener.
22+
This allows the ServiceLocator to find and inject the Listener.

src/content/blog/2023/2023-12-30-enable-gitbug-discussions.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ https://tangenttechnologies.ca/blog/hugo-themes/
2020

2121
https://www.justinjbird.me/2023/adding-comments-to-a-hugo-site-using-giscus/
2222

23-
2423
https://giscus.app/api/discussions?repo=emeraldjava%2Femeraldjava.github.io&term=Github+Worth&category=General&number=0&strict=false&first=15
2524

2625
https://zhauniarovich.com/post/2021/2021-06-giscus/
@@ -29,7 +28,6 @@ https://github.com/zyrikby/website_related/tree/master
2928
See https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#get-a-repository
3029

3130
gh api \
32-
-H "Accept: application/vnd.github+json" \
33-
-H "X-GitHub-Api-Version: 2022-11-28" \
34-
/repos/emeraldjava/emeraldjava.github.io
35-
31+
-H "Accept: application/vnd.github+json" \
32+
-H "X-GitHub-Api-Version: 2022-11-28" \
33+
/repos/emeraldjava/emeraldjava.github.io
240 KB
Loading

0 commit comments

Comments
 (0)