Skip to content

Commit

Permalink
removing wasm build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
onetrickwolf committed Oct 5, 2023
1 parent ea08daa commit 6c54cce
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/test-templates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: create-aleo-app template tests

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: node template test
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- run: cd create-aleo-app/template-node
- run: npm install
- run: npm start
4 changes: 3 additions & 1 deletion create-aleo-app/template-node/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ const start = Date.now();
console.log("Starting execute!");
const result = await localProgramExecution();
console.log(result);
console.log("Execute finished!", Date.now() - start);
console.log("Execute finished!", Date.now() - start);

process.exit();

0 comments on commit 6c54cce

Please sign in to comment.