Skip to content

Commit

Permalink
build libs with docker and increase settimeout for test
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Nov 5, 2024
1 parent 4cb5327 commit 33c0a54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ jobs:
run: npm install

- name: Build project
run: npm run build-local
run: |
docker run -dit --name emscripten-nft-marker-creator-app -v $(pwd):/src emscripten/emsdk:3.1.26 bash
docker exec emscripten-nft-marker-creator-app npm run build-local
2 changes: 1 addition & 1 deletion test/NFTMarkerCreator.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ test("NFTMarkerCreator should process the image", (done) => {
expect(stdout).toContain("Finished marker creation!");
done();
});
});
}, 10000);

0 comments on commit 33c0a54

Please sign in to comment.