Skip to content

v0.16.0

v0.16.0 #219

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags-ignore:
- '**'
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
- uses: pnpm/[email protected]
with:
version: latest
run_install: true
- run: pnpm why caniuse-lite electron-to-chromium node-releases
- run: cargo run -p generate-data
- run: cargo test
- run: cargo clippy --all-features
- run: cargo clippy --example inspect
- run: cargo clippy --tests
wasm:
name: wasm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- run: cargo run -p generate-data
- run: wasm-pack build --dev --target=web -- --features wasm_bindgen