From e5fb1d9d959f21e02ff43542500c9ab48cb866d2 Mon Sep 17 00:00:00 2001 From: nazeh Date: Fri, 21 Feb 2025 14:04:16 +0300 Subject: [PATCH] chore: remove wasm-pack ci workflow --- .github/workflows/wasm.yaml | 41 ------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/wasm.yaml diff --git a/.github/workflows/wasm.yaml b/.github/workflows/wasm.yaml deleted file mode 100644 index d8f6b85..0000000 --- a/.github/workflows/wasm.yaml +++ /dev/null @@ -1,41 +0,0 @@ -name: WASM Tests - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - test: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Install Rust - uses: dtolnay/rust-toolchain@stable - with: - targets: wasm32-unknown-unknown - - - name: Install wasm-pack - run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - - - name: Build server - run: cargo build - - - name: Start server and run tests - run: | - # Start the server binary in the background - ./target/debug/pkarr-relay --testnet & - SERVER_PID=$! - - # Change the working directory to pkarr crate - cd ./pkarr - - # Run wasm-pack tests - wasm-pack test --headless --firefox --lib - - # Kill the server - kill $SERVER_PID -