Skip to content

Commit

Permalink
chore: Debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
spotandjake committed Jan 28, 2025
1 parent 254a614 commit 9ce2119
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout Project
uses: actions/checkout@v4

- name: Check Formatting
uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: |
npm ci
npm run format
git diff --exit-code --name-only
run: |
npm ci
npm run format
git diff --exit-code --name-only
3 changes: 2 additions & 1 deletion src/components/CoreTeamMemberInfo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ const { profileImage, name, title, role, githubUsername } = Astro.props;
<h2 class="text-2xl font-bold mb-2">
<span class="align-middle">{name}</span>
<a href={`https://github.com/${githubUsername}`} aria-label="GitHub link"
><GithubIcon class="inline w-6 h-6 ml-1 align-middle" /></a>
><GithubIcon class="inline w-6 h-6 ml-1 align-middle" /></a
>
</h2>
<h3 class="text-lg">{title}</h3>
<h3 class="text-lg text-gray-50">{role}</h3>
Expand Down

0 comments on commit 9ce2119

Please sign in to comment.