Skip to content

Commit 4fcf80a

Browse files
committed
chore: Debug workflow
1 parent 254a614 commit 4fcf80a

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

.github/workflows/format.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@ on:
55
pull_request:
66

77
jobs:
8-
build:
8+
check_format:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- name: Check Formatting
11+
- name: Checkout Project
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Node 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+
19+
- name: Check Formatting
20+
run: |
21+
npm ci --ignore-scripts
22+
npm run format
23+
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)