From bfb966e2e0c5de15c28a9499fa099a6fb51e4143 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Sun, 31 Dec 2023 10:06:03 -0800 Subject: [PATCH] Enable wasm feature when running tests on CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85ccad1d..f82f75fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -224,7 +224,7 @@ jobs: - name: Run main tests if: ${{ inputs.run-tests && !matrix.cli-only }} # Can't natively run CLI on Github runner's host - run: $BUILD_CMD test --target=${{ matrix.target }} + run: $BUILD_CMD test --target=${{ matrix.target }} --features=${CLI_FEATURES} - name: Run wasm tests if: ${{ inputs.run-tests && !matrix.cli-only && !matrix.use-cross }} # See comment for the "Build wasm library" step