Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm committed Sep 21, 2024
1 parent c27dbd8 commit 4183f95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-13, macos-14, windows-latest ]
node-version: [ lts, 16.11.0 ]
node-version:
- lts
# Using this instead of v16.6.0 to get npm v8, because v7 seems to fail when chmod'ing chdman's
# package.json "bin" file
- 16.11.0
steps:
# Setup and install
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
npm run "bump:${{ inputs.increment }}"
for PACKAGE in packages/chdman-*; do
# shellcheck disable=SC2005
echo "$(jq '. + (input|{description,keywords,homepage,bugs,license,author,funding,repository,publishConfig})' "${PACKAGE}/package.json" packages/chdman/package.json)" > "${PACKAGE}/package.json"
echo "$(jq '. + (input|{description,keywords,homepage,bugs,license,author,funding,repository})' "${PACKAGE}/package.json" packages/chdman/package.json)" > "${PACKAGE}/package.json"
done
git add --all
Expand Down

0 comments on commit 4183f95

Please sign in to comment.