Skip to content

Switch WasmerJS over to NPM workspaces #293

Switch WasmerJS over to NPM workspaces

Switch WasmerJS over to NPM workspaces #293

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: "21"
jobs:
check:
name: Compile and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Install Nextest
uses: taiki-e/install-action@nextest
- name: Install wasm-pack
uses: taiki-e/install-action@wasm-pack
- name: Install wasm-strip and wasm-opt
run: sudo apt-get update && sudo apt-get install -y wabt binaryen
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install JS Dependencies
run: npm ci --workspaces
- name: Type Checking
run: cargo check --workspace --verbose --locked
working-directory: packages/sdk
- name: Unit Tests
run: wasm-pack test --headless --firefox
working-directory: packages/sdk
- name: Build Package
run: npm run build --workspaces --if-present
- name: Integration Tests
run: npm run test --workspaces --if-present
api-docs:
name: API Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Install wasm-pack
uses: taiki-e/install-action@wasm-pack
- name: Install wasm-strip and wasm-opt
run: sudo apt-get update && sudo apt-get install -y wabt binaryen
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install JS Dependencies
run: npm ci --workspaces
- name: Build
run: npm run build:dev --workspace=@wasmer/sdk
- name: Generate Docs
run: npm run docs --workspace=@wasmer/sdk
- name: Upload API Docs
uses: JamesIves/[email protected]
if: github.ref == 'refs/heads/main'
with:
branch: gh-pages
folder: packages/sdk/docs/public
single-commit: true
lints:
name: Linting and Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Check Formatting
run: cargo fmt --all --verbose --check
- name: Clippy
run: cargo clippy --workspace --verbose
workflow-times:
name: Workflow Timings
runs-on: ubuntu-latest
needs:
- check
steps:
- name: Time Reporter
uses: Michael-F-Bryan/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
jobs: |
Compile and Test
message: |
Make sure you keep an eye on build times!
The goal is to keep CI times under 10 minutes so developers can maintain a fast edit-compile-test cycle.