From 6b1ac11e9f7267fb5f870dabd7238a0b40e843c3 Mon Sep 17 00:00:00 2001 From: syedhasandigi <82388499+syedhasandigi@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:28:10 +0000 Subject: [PATCH] integration test needs wasm-tools (#14) * integration test needs wasm-tools * Using same job at test.yaml --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d894976..c05b07b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,11 +73,19 @@ jobs: restore-keys: | ${{ runner.OS }}-node- ${{ runner.OS }}- + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.0.x' + - name: Install wasm tools + run: dotnet workload install wasm-tools - name: Install Packages run: npm ci + - name: Build + run: npm run build - name: Run tests run: npm run ${{ matrix.command }} + check-version: name: "Check version" runs-on: ubuntu-latest