Skip to content

Commit dd1d7dd

Browse files
committed
fix ci errors
fix anchor errors fix group 3 errors fix anchor errors group 2 Update pnpm-lock.yaml update checking account pnpm lock remove biome update pnpm lock anchor group 0 move pnpm install in anchor workflow update anchor version in group 0 Revert "update anchor version to 0.31.1" This reverts commit ca12179. update anchor version to 0.31.1 add type:module to anchor bankrun tests add with json to bankrun tests remove curly braces from bankrun tests use import in bankrun tests fix ts strip only error add type: "module" to basic native example package.json add type module to package.json fix ts strip only error fix token-2022 errors fix biome remove seahorse and steel github workflows silence warnings in basics example - use workspace deps - use solana-system-interface - use borsh::to_vec() - use allow unexpected cfgs and depreciated add allow unexpected cfgs and update deps in basic examples
1 parent 8735834 commit dd1d7dd

File tree

378 files changed

+18709
-13811
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

378 files changed

+18709
-13811
lines changed

.github/workflows/anchor.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ jobs:
126126
echo "Building and Testing $project"
127127
cd "$project" || return 1
128128
129+
# Install dependencies first
130+
if ! pnpm install --frozen-lockfile; then
131+
echo "::error::pnpm install failed for $project"
132+
echo "$project: pnpm install failed" >> $GITHUB_WORKSPACE/failed_projects.txt
133+
cd - > /dev/null
134+
return 1
135+
fi
136+
129137
# Run anchor build
130138
if ! anchor build; then
131139
echo "::error::anchor build failed for $project"
@@ -135,14 +143,6 @@ jobs:
135143
return 1
136144
fi
137145
138-
# Install dependencies
139-
if ! pnpm install --frozen-lockfile; then
140-
echo "::error::pnpm install failed for $project"
141-
echo "$project: pnpm install failed" >> $GITHUB_WORKSPACE/failed_projects.txt
142-
cd - > /dev/null
143-
return 1
144-
fi
145-
146146
# Run anchor test
147147
if ! anchor test; then
148148
echo "::error::anchor test failed for $project"

.github/workflows/biome.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/seahorse.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)