Skip to content

Commit 8923d86

Browse files
committed
Add job in CI for wasm build
1 parent 39aeac1 commit 8923d86

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,11 @@ jobs:
4646
- uses: actions/checkout@v2
4747
- name: Check the README.md file is up-to-date
4848
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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
status = ['integration-tests', 'clippy-check', 'readme-check']
1+
status = [
2+
'integration-tests',
3+
'clippy-check',
4+
'readme-check',
5+
'wasm-build'
6+
]
27
# 1 hour timeout
38
timeout-sec = 3600

0 commit comments

Comments
 (0)