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 8474c0a How does 14.19.1 differ?
8474c0a is described below
commit 8474c0aa861f8157b60a3bd767690ad18c538176
Author: Sebb <[email protected]>
AuthorDate: Fri Mar 25 13:41:50 2022 +0000
How does 14.19.1 differ?
---
.github/workflows/unittestagenda.yml | 3 ++-
www/board/agenda/Rakefile | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/unittestagenda.yml
b/.github/workflows/unittestagenda.yml
index ac6ef19..bf6a22f 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -24,7 +24,7 @@ jobs:
if: matrix.os == 'ubuntu-20.04'
- uses: actions/setup-node@v2
with:
- node-version: '14.19.0' # was 14.19.1
+ node-version: '14.19.1' # 14.19.0 does work on Ubuntu
- uses: actions/checkout@v2
with:
persist-credentials: false
@@ -44,4 +44,5 @@ jobs:
run: |
cd www/board/agenda
type npm || true
+ which -a npm || true
bundle exec rake
diff --git a/www/board/agenda/Rakefile b/www/board/agenda/Rakefile
index d50e8d6..c76a6d2 100644
--- a/www/board/agenda/Rakefile
+++ b/www/board/agenda/Rakefile
@@ -54,6 +54,7 @@ end
file 'package-lock.json' => 'package.json' do
puts ENV['PATH'] # TEMP CHECK
sh 'type npm || true' # TEMP CHECK
+ sh 'which -a npm || true' # TEMP CHECK
sh 'echo $PATH' # TEMP CHECK
sh 'npm install'
sh 'touch package-lock.json'