Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
Added WASM CI build action
  • Loading branch information
PantelisGeorgiadis committed Oct 14, 2023
1 parent ce2b333 commit 732a2a8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: WASM CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: mymindstorm/setup-emsdk@v11

- name: Checkout
uses: actions/checkout@v3
- name: Make build script executable
working-directory: ./wasm
run: chmod +x ./build.sh
- name: Build
working-directory: ./wasm
run: ./build.sh
4 changes: 2 additions & 2 deletions src/NativePixelDecoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ class NativePixelDecoder {
* Receives a string message from the WebAssembly.
* @method
* @param {number} pointer - The string message pointer.
* @param {number} pointer - The string message length.
* @param {number} len - The string message length.
*/
onNativePixelDecoderMessage: (pointer, len) => {
if (!this.logNativeDecodersMessages) {
Expand All @@ -447,7 +447,7 @@ class NativePixelDecoder {
* Receives an exception from the WebAssembly.
* @method
* @param {number} pointer - The exception reason string pointer.
* @param {number} pointer - The exception reason string length.
* @param {number} len - The exception reason string length.
* @throws Error if NativePixelDecoder module exception occurs.
*/
onNativePixelDecoderException: (pointer, len) => {
Expand Down

0 comments on commit 732a2a8

Please sign in to comment.