Skip to content

Commit 9ce2119

Browse files
committed
chore: Debug workflow
1 parent 254a614 commit 9ce2119

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/format.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- name: Checkout Project
12+
uses: actions/checkout@v4
13+
1214
- name: Check Formatting
1315
uses: actions/setup-node@v4
1416
with:
1517
node-version: "20.x"
16-
- run: |
17-
npm ci
18-
npm run format
19-
git diff --exit-code --name-only
18+
run: |
19+
npm ci
20+
npm run format
21+
git diff --exit-code --name-only

src/components/CoreTeamMemberInfo.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ const { profileImage, name, title, role, githubUsername } = Astro.props;
8080
<h2 class="text-2xl font-bold mb-2">
8181
<span class="align-middle">{name}</span>
8282
<a href={`https://github.com/${githubUsername}`} aria-label="GitHub link"
83-
><GithubIcon class="inline w-6 h-6 ml-1 align-middle" /></a>
83+
><GithubIcon class="inline w-6 h-6 ml-1 align-middle" /></a
84+
>
8485
</h2>
8586
<h3 class="text-lg">{title}</h3>
8687
<h3 class="text-lg text-gray-50">{role}</h3>

0 commit comments

Comments
 (0)