Skip to content

Feat/wasm only

Feat/wasm only #40

Workflow file for this run

name: Linux πŸ§ͺ
on:
pull_request:
types: [opened, push, reopened]
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository πŸ“₯
uses: actions/checkout@v4
- name: Setup Node.js 🌐
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install Dependencies 🧢
run: |
yarn
- name: Build WASM πŸ”§
run: npm run build:wasm
- name: Test πŸ”
run: yarn test