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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
# Add the wasm32v1-none target for building contracts
- run: rustup target add wasm32v1-none
- run: sudo apt-get update && sudo apt-get install -y libudev-dev libdbus-1-dev pkg-config
Expand All @@ -36,10 +40,12 @@ jobs:
run: |
if ! command -v stellar-scaffold &> /dev/null; then
echo "stellar-scaffold not found, installing..."
cargo binstall stellar-scaffold-cli
cargo install --git https://github.com/theahaco/scaffold-stellar stellar-scaffold-cli --rev cde0d2588492a4cc37c6c90b2570c07e8032b4b6 --locked
else
echo "stellar-scaffold already installed. Clear cache to force reinstall."
fi
echo "Scaffold Version:"
stellar-scaffold version
- run: npm ci
- run: npm run lint
- run: npx prettier . --check
Expand Down
Loading
Loading