From d9080594709709ba381433162413626bd1c817a8 Mon Sep 17 00:00:00 2001 From: bartjuw Date: Wed, 8 Nov 2023 10:32:09 -0800 Subject: [PATCH] Update build-libantimonyjs-github-actions.yml --- .github/workflows/build-libantimonyjs-github-actions.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-libantimonyjs-github-actions.yml b/.github/workflows/build-libantimonyjs-github-actions.yml index cf08087..4e32156 100644 --- a/.github/workflows/build-libantimonyjs-github-actions.yml +++ b/.github/workflows/build-libantimonyjs-github-actions.yml @@ -84,11 +84,18 @@ jobs: run: ls -l working-directory: install - name: Copy libantimonyjs to test dir - run: cp libantimony.* test + run: cp libantimony.* $GITHUB_WORKSPACE/test working-directory: install - name: check built files exist run: ls -l working-directory: test + - name: Check node is available + run: node -v + working-directory: test + - name: run tests + run: node test_antimony.js + working-directory: test +