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 9682cdc  Is npm missing?
9682cdc is described below

commit 9682cdc4daf1b7df9dd9138508e352056e1558d2
Author: Sebb <[email protected]>
AuthorDate: Fri Mar 25 13:28:10 2022 +0000

    Is npm missing?
---
 .github/workflows/unittestagenda.yml | 3 ++-
 www/board/agenda/Rakefile            | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/unittestagenda.yml 
b/.github/workflows/unittestagenda.yml
index 58f690b..0aacb22 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -11,7 +11,7 @@ on:
 jobs:
   test:
     strategy:
-      fail-fast: true
+      fail-fast: false
       matrix:
         os: [ubuntu-20.04, 'macos-latest']
         ruby: [2.7]
@@ -43,4 +43,5 @@ jobs:
     - name: test agenda code
       run: |
         cd www/board/agenda
+        type npm || true
         bundle exec rake
diff --git a/www/board/agenda/Rakefile b/www/board/agenda/Rakefile
index 0900ada..c38b291 100644
--- a/www/board/agenda/Rakefile
+++ b/www/board/agenda/Rakefile
@@ -52,9 +52,9 @@ task "touch" do
 end
 
 file 'package-lock.json' => 'package.json' do
+  sh 'type npm || true' # TEMP CHECK
   sh 'npm install'
   sh 'touch package-lock.json'
-  sh 'chromedriver -v || true' # TEMP CHECK
 end
 
 file 'test/work' do

Reply via email to