File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# about minimum2scp/nodejs image
2
2
3
3
* based on minimum2scp/baseimage (see https://github.com/minimum2scp/dockerfiles/tree/master/baseimage )
4
- * node.js v20.2 .0 is installed with [ nodenv] ( https://github.com/nodenv/nodenv )
4
+ * node.js v20.3 .0 is installed with [ nodenv] ( https://github.com/nodenv/nodenv )
5
5
* nodenv is installed in /opt/nodenv
6
6
* [ yarn] ( https://yarnpkg.com/ ) is installed with deb package
7
7
Original file line number Diff line number Diff line change 63
63
64
64
describe command ( 'nodenv version-name' ) do
65
65
let ( :login_shell ) { true }
66
- its ( :stdout ) { should eq "20.2 .0\n " }
66
+ its ( :stdout ) { should eq "20.3 .0\n " }
67
67
end
68
68
69
69
[
70
70
{
71
- nodejs : '20.2 .0' ,
71
+ nodejs : '20.3 .0' ,
72
72
} ,
73
73
] . each do |v |
74
74
describe command ( 'nodenv versions --bare --skip-aliases' ) do
86
86
let ( :login_shell ) { true }
87
87
its ( :stdout ) {
88
88
should eq <<~ALIASES
89
- 20 => 20.2 .0
90
- 20.2 => 20.2 .0
89
+ 20 => 20.3 .0
90
+ 20.3 => 20.3 .0
91
91
ALIASES
92
92
}
93
93
end
94
94
95
95
{
96
- '20' => '20.2 .0' ,
97
- '20.2 ' => '20.2 .0' ,
96
+ '20' => '20.3 .0' ,
97
+ '20.3 ' => '20.3 .0' ,
98
98
} . each do |src , dest |
99
99
describe file ( "/opt/nodenv/versions/#{ src } " ) do
100
100
it { should be_symlink }
You can’t perform that action at this time.
0 commit comments