Skip to content
package

GitHub Action

Setup Wasmer

v3.1 Latest version

Setup Wasmer

package

Setup Wasmer

Set up Wasmer: the cross-platform WASM runtime

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Setup Wasmer

uses: wasmerio/setup-wasmer@v3.1

Learn more about this action in wasmerio/setup-wasmer

Choose a version

setup-wasmer

Tests

GitHub action for setting up Wasmer.

Features

  • Always uses the latest stable Wasmer build
  • Optionally lock onto a specific wasmer version
  • Cross platform (Linux, Mac, and Windows)
  • Automatically updates environment variables (So you can immediately start using Wasmer)
  • Fully tested

Usage

The easiest way to use this action is to use the latest stable version of Wasmer. This can be done by using the following configuration:

- name: Setup Wasmer
  uses: wasmerio/setup-wasmer@v3.1

Here is an example using a specific version of Wasmer:

- name: Setup Wasmer
  uses: wasmerio/setup-wasmer@v3.1
  with:
    version: '4.2.5'

Input

name type description
version optional specify the version of wasmer to install

Output

There is no output from this action

Caveats