We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39aeac1 commit 8923d86Copy full SHA for 8923d86
.github/workflows/tests.yml
@@ -46,3 +46,11 @@ jobs:
46
- uses: actions/checkout@v2
47
- name: Check the README.md file is up-to-date
48
run: sh scripts/check-readme.sh
49
+
50
+ wasm_build:
51
+ name: wasm-build
52
+ runs-on: ubuntu-latest
53
+ steps:
54
+ - uses: actions/checkout@v2
55
+ - name: Build
56
+ run: cargo build --example web_app
bors.toml
@@ -1,3 +1,8 @@
1
-status = ['integration-tests', 'clippy-check', 'readme-check']
+status = [
2
+ 'integration-tests',
3
+ 'clippy-check',
4
+ 'readme-check',
5
+ 'wasm-build'
6
+]
7
# 1 hour timeout
8
timeout-sec = 3600
0 commit comments