Skip to content
Closed
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ jobs:
- run: avm use latest
shell: bash

- run: RUSTUP_TOOLCHAIN=nightly-2025-04-01 anchor build
- run: RUSTUP_TOOLCHAIN=nightly anchor build
shell: bash
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"typescript": "^4.3.5"
},
"scripts": {
"build": "RUSTUP_TOOLCHAIN=nightly-2025-04-01 anchor build",
"build": "RUSTUP_TOOLCHAIN=nightly anchor build",
"clean": "rm -rf .anchor target",
"fmt:rust": "RUSTUP_TOOLCHAIN=nightly-2025-04-01 cargo fmt",
"fmt:rust:check": "RUSTUP_TOOLCHAIN=nightly-2025-04-01 cargo fmt --check",
"fmt:rust": "RUSTUP_TOOLCHAIN=nightly cargo fmt",
"fmt:rust:check": "RUSTUP_TOOLCHAIN=nightly cargo fmt --check",
"lint": "bun run fmt:rust:check && bun run lint:ts && bun run prettier:check",
"lint:fix": "bun run fmt:rust && bun run lint:ts:fix && bun run prettier:write",
"lint:ts": "eslint \"migrations/**/*.ts\" \"tests/**/*.ts\"",
Expand Down
Loading