We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0dee91 commit 1fd838fCopy full SHA for 1fd838f
.github/workflows/go.yaml
@@ -28,12 +28,15 @@ jobs:
28
- name: Install wasmbrowsertest
29
run: |
30
go install github.com/agnivade/wasmbrowsertest@latest
31
- # Rename for automatic discovery as per your guide
32
mv "$(go env GOPATH)/bin/wasmbrowsertest" "$(go env GOPATH)/bin/go_js_wasm_exec"
33
+ - name: Install Chrome
34
+ uses: browser-actions/setup-chrome@latest
35
+
36
- name: Run WASM Tests
- # ensure Chrome/Chromium is available (included in ubuntu-latest)
37
run: GOOS=js GOARCH=wasm go test -v ./...
38
+ env:
39
+ WASMBROWSERTEST_ARGS: "--no-sandbox --disable-dev-shm-usage"
40
41
build-and-release:
42
needs: tests # only release if security AND all tests pass
0 commit comments