Skip to content

Commit

Permalink
ENH: Add WebAssembly CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Feb 10, 2023
1 parent f0d18e3 commit eb8a9e0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: WebAssembly

on: [push,pull_request]

jobs:
Build WebAssembly:
name: Build WebAssembly
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install
run: |
npm install
- name: Build
run: |
npm run build

0 comments on commit eb8a9e0

Please sign in to comment.