Skip to content

WIP: Debug wasm action #30

WIP: Debug wasm action

WIP: Debug wasm action #30

Workflow file for this run

name: WebAssembly
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
jobs:
build-wasm:
name: "build-test-wasm"
runs-on: ubuntu-22.04
steps:
- name: Free Disk Space (Ubuntu)
 uses: jlumbroso/free-disk-space@main
- name: Checkout

Check failure on line 22 in .github/workflows/wasm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/wasm.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: '18'
- name: Install
run: |
npm ci
npm run build:testData
- name: Build TypeScript
working-directory: ./wasm/typescript
run: |
npm ci
npm run build
- name: Test TypeScript
working-directory: ./wasm/typescript
run: |
npm test
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
with:
python-version: '3.10'
- name: Start SSH session
uses: luchihoratiu/debug-via-ssh@main
with:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
SSH_PASS: ${{ secrets.SSH_PASS }}
- name: Test Python WASI
working-directory: ./wasm/python/itkwasm-elastix-wasi
run: |
pip install pytest itkwasm-compare-images itk-io
pip install -e .
pytest -s