Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,24 @@ jobs:
- "amazonlinux-2023"
- "centos-stream-9"
- "centos-stream-10"
- "debian-11"
- "debian-12"
- "ubuntu-2204"
- "ubuntu-2404"
suite:
- "default"
- "npm-embedded"
- "npm-source"
- "package"
- "source"
exclude:
- os: "amazonlinux-2023"
suite: "source"
- os: "amazonlinux-2023"
suite: "npm-source"
- os: "fedora-latest"
suite: "source"
- os: "fedora-latest"
suite: "npm-source"
fail-fast: false

steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Standardise files with files in sous-chefs/repo-management
Standardise files with files in sous-chefs/repo-management
Standardise files with files in sous-chefs/repo-management

## Unreleased

### Bug Fixes

* Fix npm_from_source recipe to use :install action instead of :install_with_make - npm is a JavaScript package without Makefile ([#232](https://github.com/sous-chefs/nodejs/issues/232))
* Update CI platform names to match kitchen.dokken.yml configuration (ubuntu-22.04, ubuntu-24.04, debian-12)

## [10.2.3](https://github.com/sous-chefs/nodejs/compare/10.2.2...v10.2.3) (2025-10-15)


Expand Down
3 changes: 2 additions & 1 deletion recipes/npm_from_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
url dist['url']
checksum dist['checksum']
version dist['version']
action :install_with_make
has_binaries ['bin/npm', 'bin/npx']
action :install
end