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 65fb94f  Rake can't find npm 14.19.0 under Ubuntu
65fb94f is described below

commit 65fb94f521030cce662d49a014c99bfa043872c9
Author: Sebb <[email protected]>
AuthorDate: Fri Mar 25 13:36:02 2022 +0000

    Rake can't find npm 14.19.0 under Ubuntu
    
    Try to debug why
---
 .github/workflows/unittestagenda.yml | 2 +-
 www/board/agenda/Rakefile            | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/unittestagenda.yml 
b/.github/workflows/unittestagenda.yml
index 0aacb22..ac6ef19 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -13,7 +13,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        os: [ubuntu-20.04, 'macos-latest']
+        os: [ubuntu-20.04] #, 'macos-latest']
         ruby: [2.7]
     runs-on: ${{ matrix.os }}
     steps:
diff --git a/www/board/agenda/Rakefile b/www/board/agenda/Rakefile
index c38b291..d50e8d6 100644
--- a/www/board/agenda/Rakefile
+++ b/www/board/agenda/Rakefile
@@ -52,7 +52,9 @@ task "touch" do
 end
 
 file 'package-lock.json' => 'package.json' do
+  puts ENV['PATH'] # TEMP CHECK
   sh 'type npm || true' # TEMP CHECK
+  sh 'echo $PATH' # TEMP CHECK
   sh 'npm install'
   sh 'touch package-lock.json'
 end

Reply via email to