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 2d94ea3 Let Rakefile install npm
2d94ea3 is described below
commit 2d94ea3ef46ac60b07b986dba87af98ca681e1e8
Author: Sebb <[email protected]>
AuthorDate: Thu Mar 24 23:32:42 2022 +0000
Let Rakefile install npm
---
.github/workflows/unittestagenda.yml | 2 --
.travis.yml | 1 -
www/board/agenda/Rakefile | 1 +
3 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/.github/workflows/unittestagenda.yml
b/.github/workflows/unittestagenda.yml
index 3404d7b..dfea0a2 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -36,7 +36,6 @@ jobs:
- name: setup agenda 1
run: |
cd www/board/agenda
- npm install
bundle install
- name: setup agenda 2
# need to run the ruby that has all the gems installed
@@ -48,5 +47,4 @@ jobs:
- name: test agenda code
run: |
cd www/board/agenda
- npm list vue
bundle exec rake
diff --git a/.travis.yml b/.travis.yml
index da1ccb6..c3701ae 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -52,7 +52,6 @@ before_script:
- gem list
- ruby --version
- node --version
- - cd www/board/agenda; npm list vue
########################################################################
# Notification #
diff --git a/www/board/agenda/Rakefile b/www/board/agenda/Rakefile
index 7fd944c..25f7746 100644
--- a/www/board/agenda/Rakefile
+++ b/www/board/agenda/Rakefile
@@ -54,6 +54,7 @@ end
file 'package-lock.json' => 'package.json' do
sh 'npm install'
sh 'touch package-lock.json'
+ sh 'npm list vue'
end
file 'test/work' do