Skip to content

Commit 3b6d67e

Browse files
committed
ENH: Add Wasm GitHub Action
1 parent 6972bd9 commit 3b6d67e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/wasm.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: WebAssembly
2+
3+
on: [push,pull_request]
4+
5+
jobs:
6+
build-wasm:
7+
name: "Build WebAssembly"
8+
runs-on: ubuntu-22.04
9+
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- uses: actions/setup-node@v3
14+
with:
15+
node-version: '18'
16+
17+
- name: Install
18+
run: |
19+
npm install
20+
21+
- name: Build
22+
run: |
23+
npm run build

0 commit comments

Comments
 (0)