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 e3aba6c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Formatting
- name: Checkout Project
uses: actions/checkout@v4

- name: Setup Node Formatting
uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: |
npm ci
npm run format
git diff --exit-code --name-only

- name: Check Formatting
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 e3aba6c

Please sign in to comment.