Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pinning of NodeJS 18 on Debian 12 in tests #494

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions spec/acceptance/class_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@

include_examples 'cleanup'

# Debian 12 contains NodeJS 18, when we test 16, we need to force the nodesource version
# Debian 12 contains NodeJS 18, when we test 16 and 18, we need to force the nodesource version
# as Debians versions *can* be newer
repo_pin =
if nodejs_version == '16' && fact('os.family') == 'Debian' && fact('os.release.major') == '12'
if %w[16 18].include?(nodejs_version) && fact('os.family') == 'Debian' && fact('os.release.major') == '12'
'1000'
else
'undef'
Expand All @@ -54,17 +55,17 @@
end

describe package('nodejs') do
it { is_expected.to be_installed }

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 58 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" Skipped: Only NodeJS 16 is supported on EL7

it 'comes from the expected source' do

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 60 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Package "nodejs" comes from the expected source Skipped: Only NodeJS 16 is supported on EL7
pkg_output = shell(pkg_cmd)
expect(pkg_output.stdout).to match 'nodesource'
end
end

describe command('node --version') do
its(:exit_status) { is_expected.to eq 0 }

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 67 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" exit_status Skipped: Only NodeJS 16 is supported on EL7
its(:stdout) { is_expected.to match(%r{^v#{nodejs_version}}) }

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 20

nodejs explicitly using version 20 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7

Check warning on line 68 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 7 - NodeJS 18

nodejs explicitly using version 18 from nodesource Command "node --version" stdout Skipped: Only NodeJS 16 is supported on EL7
end
end

Expand Down Expand Up @@ -98,7 +99,7 @@
nodejs-devel
].each do |pkg|
describe package(pkg) do
it do

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 20

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed

Check warning on line 102 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 18

nodejs RedHat with repo_class => epel Package "nodejs-devel" is expected to be installed Failure/Error: is_expected.to be_installed expected Package "nodejs-devel" to be installed
pending('nodejs-devel and nodejs not installable together on EL9') if fact('os.release.major') == '9' && pkg == 'nodejs-devel'
is_expected.to be_installed
end
Expand Down Expand Up @@ -131,11 +132,11 @@
nodejs-devel
].each do |pkg|
describe package(pkg) do
it do

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 135 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9
is_expected.to be_installed
end

it 'comes from the expected source' do

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9 - NodeJS 16

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "npm" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9

Check warning on line 139 in spec/acceptance/class_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8 - NodeJS 20

nodejs RedHat with repo_class => nodejs::repo::dnfmodule Package "nodejs-devel" comes from the expected source Skipped: NodeJS 20 is not yet in a released EL, NodeJS 16 is not available on EL9
pkg_output = shell(pkg_cmd)
expect(pkg_output.stdout).to match 'appstream'
end
Expand Down