This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 34b10db7 npm list only available at end
34b10db7 is described below

commit 34b10db75e3041a80caed4189dfa14697172176f
Author: Sebb <[email protected]>
AuthorDate: Sat May 20 23:10:49 2023 +0100

    npm list only available at end
---
 .github/workflows/unittestagenda.yml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/unittestagenda.yml 
b/.github/workflows/unittestagenda.yml
index 3329794c..6eb10512 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -59,9 +59,15 @@ jobs:
       run: |
         node -v
         npm -v
-        npm list
         gem list
     - name: test agenda code
       run: |
         cd www/board/agenda
-        SKIP_NAVIGATION=1 bundle exec rake RSPEC_OPTS='--pattern=secret*.rb'
+        SKIP_NAVIGATION=1 bundle exec rake RSPEC_OPTS='--pattern=secret*.rb' 
|| echo "action_state=failed" >> $GITHUB_ENV
+      continue-on-error: true
+    - name: Run Summary
+      run: |
+        npm list # added by Rakefile
+        echo "${{ env.action_state }}"
+        # This will be be true for a successful run
+        test "${{ env.action_state }}" != 'failed'

Reply via email to