Skip to content

Commit 615404d

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 fix fundraiser and transfer token bankrun tests fix checking-account and favorites error update anchor version in anchor workflow add cfgs lint to compression and oracles anchor examples add cfg lint to token examples add lints.rust unexpected_cfgs to basic examples update anchor version in pnpm.yaml update anchor version and remove allow attributes update pnpm version
1 parent 8735834 commit 615404d

File tree

426 files changed

+28547
-17448
lines changed

Some content is hidden

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

426 files changed

+28547
-17448
lines changed

.github/workflows/anchor.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
- uses: actions/checkout@v4
107107
- uses: heyAyushh/[email protected]
108108
with:
109-
anchor-version: 0.31.1
109+
anchor-version: 0.32.1
110110
solana-cli-version: stable
111111
- name: Display Versions and Install pnpm
112112
run: |
@@ -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)