This commit is contained in:
Matthew Ryan Dillon 2020-10-28 09:30:25 -07:00
parent 1d04a7139f
commit 5b7fc59257
2 changed files with 10 additions and 1 deletions

View file

@ -14,10 +14,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: lint
run: cargo fmt -- --check
- name: install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: check
run: cargo check
- name: test
run: wasm-pack test --node
@ -26,14 +32,17 @@ jobs:
needs: test
steps:
- uses: actions/checkout@v2
- name: install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: build
run: |
wasm-pack build
cd www
npm install
npm run build
- name: deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'

View file

@ -3,7 +3,7 @@ mod utils;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern {
extern "C" {
fn alert(s: &str);
}