Skip to content

Wasm bindings checks #461

Wasm bindings checks

Wasm bindings checks #461

Workflow file for this run

name: Wasm bindings checks
on:
push:
branches: [develop, production]
paths:
- ".github/workflows/bindings-wasm.yml"
- ".github/actions/**"
- "**.rs" # Include all rust files
- "**Cargo.toml" # Include all Cargo.toml files
- "**Cargo.lock" # Include all Cargo.lock files
- "!**/examples/**" # Exclude all examples
- "!**/tests/**" # Exclude all tests
- "!client/bindings/**" # Exclude all bindings
- "client/bindings/wasm/**" # Re-include wasm bindings
pull_request:
branches: [develop, production]
paths:
- ".github/workflows/bindings-wasm.yml"
- ".github/actions/**"
- "**.rs" # Include all rust files
- "**Cargo.toml" # Include all Cargo.toml files
- "**Cargo.lock" # Include all Cargo.lock files
- "!**/examples/**" # Exclude all examples
- "!**/tests/**" # Exclude all tests
- "!client/bindings/**" # Exclude all bindings
- "client/bindings/wasm/**" # Re-include wasm bindings
schedule:
- cron: "0 1 * * *"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Test
if: ${{ ! github.event.schedule }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
node: ["16"]
steps:
- name: Checkout the Source Code
uses: actions/checkout@v3
- name: Set Up Nightly Rust
uses: ./.github/actions/setup-rust
with:
toolchain: nightly
target: wasm32-unknown-unknown
cache: true
cache-root: client/bindings/wasm/
cache-job-id: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }}-${{ matrix.node }}
cache-hash: ${{ hashFiles('.github/workflows/bindings-wasm.yml') }}
# Download a pre-compiled wasm-bindgen binary.
- name: Install wasm-bindgen-cli
uses: jetli/wasm-bindgen-action@24ba6f9fff570246106ac3f80f35185600c3f6c9
with:
version: "0.2.84"
- name: Set Up Node.js ${{ matrix.node }} and Yarn Cache
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: yarn
cache-dependency-path: client/bindings/wasm/yarn.lock
- name: Run Yarn Install
working-directory: client/bindings/wasm/
run: yarn install
- name: Run Yarn Build
working-directory: client/bindings/wasm/
run: yarn build
- name: Run Yarn Test
working-directory: client/bindings/wasm/
run: yarn test
lint:
name: Lint
if: ${{ ! github.event.schedule }}
runs-on: ubuntu-latest
steps:
- name: Checkout the Source Code
uses: actions/checkout@v3
- name: Set Up Beta Clippy
uses: ./.github/actions/setup-rust
with:
toolchain: beta
target: wasm32-unknown-unknown
components: clippy
cache: true
cache-root: client/bindings/wasm/
cache-job-id: ${{ github.workflow }}-${{ github.job }}
cache-hash: ${{ hashFiles('.github/workflows/bindings-wasm.yml') }}
- name: Run Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path client/bindings/wasm/Cargo.toml --all-features --all-targets -- --deny warnings
name: Clippy Results for the Wasm Bindings
- name: Setup Node.js
uses: actions/setup-node@v2
with:
cache: yarn
cache-dependency-path: client/bindings/wasm/yarn.lock
node-version: 16.x
- name: Install Dependencies
working-directory: client/bindings/wasm/
run: yarn
- name: Lint
working-directory: client/bindings/wasm/
run: yarn lint
check-format:
name: Check Format
if: ${{ ! github.event.schedule }}
runs-on: ubuntu-latest
steps:
- name: Checkout the Source Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
cache: yarn
cache-dependency-path: client/bindings/wasm/yarn.lock
node-version: 16.x
- name: Install Dependencies
working-directory: client/bindings/wasm/
run: yarn
- name: Format
working-directory: client/bindings/wasm/
run: yarn format-check