diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6611702..0f36d88 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,11 +9,7 @@ jobs: with: toolchain: stable - uses: Swatinem/rust-cache@v1 + - run: npm install -g pnpm - uses: actions-rs/cargo@v1 with: command: clippy - - run: | - cd js - npm install -g pnpm - pnpm install - pnpm build diff --git a/build.rs b/build.rs index 901c991..197e7ca 100644 --- a/build.rs +++ b/build.rs @@ -21,7 +21,5 @@ fn main() { if !status.success() { panic!("Failed to build JS"); } - - return; } }