Skip to content

Commit

Permalink
Add CI & CD for Wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
Justyna-JustCode committed Aug 1, 2024
1 parent 5d1d5e7 commit a647a2a
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/continuous_deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# based on: https://plippe.github.io/blog/2021/07/12/rust-wasm-github.html
name: Continuous deployment
on:
workflow_run:
branches: [main]
workflows: [Continuous integration]
types: [completed]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown

- uses: jetli/wasm-pack-action@v0.4.0
- uses: jetli/wasm-bindgen-action@v0.2.0

- uses: actions/checkout@v4

- run: wasm-pack build --target web --release
- run: mkdir ./wasm/pkg && cp ./pkg/rusty_weather_lib.js ./pkg/rusty_weather_lib_bg.wasm ./wasm/pkg

- uses: seanmiddleditch/gha-publish-to-git@master
with:
branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
source_folder: ./wasm

25 changes: 25 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# from: https://plippe.github.io/blog/2021/07/12/rust-wasm-github.html
name: Continuous integration
on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: cargo test --all

format:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: cargo fmt --all -- --check

clippy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: cargo clippy --all -- -D warnings

0 comments on commit a647a2a

Please sign in to comment.