Skip to content

Feature | Better Game Menu #17

Feature | Better Game Menu

Feature | Better Game Menu #17

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Setup Rust
run: rustup target add wasm32-unknown-unknown
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Install wasm bindgen
run: cargo install wasm-bindgen-cli
- name: Install dependencies
run: yarn
- name: Build
run: yarn build