Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 8 additions & 8 deletions .github/workflows/anchor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,14 @@ jobs:
echo "Building and Testing $project"
cd "$project" || return 1

# Install dependencies first
if ! pnpm install --frozen-lockfile; then
echo "::error::pnpm install failed for $project"
echo "$project: pnpm install failed" >> $GITHUB_WORKSPACE/failed_projects.txt
cd - > /dev/null
return 1
fi

# Run anchor build
if ! anchor build; then
echo "::error::anchor build failed for $project"
Expand All @@ -135,14 +143,6 @@ jobs:
return 1
fi

# Install dependencies
if ! pnpm install --frozen-lockfile; then
echo "::error::pnpm install failed for $project"
echo "$project: pnpm install failed" >> $GITHUB_WORKSPACE/failed_projects.txt
cd - > /dev/null
return 1
fi

# Run anchor test
if ! anchor test; then
echo "::error::anchor test failed for $project"
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/biome.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/seahorse.yml

This file was deleted.

Loading
Loading