Skip to content

Commit

Permalink
try newer bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed Jul 30, 2024
1 parent 96c7f62 commit 58f878a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 16.x, 18.x, 20.x ]
node-version: [ 16.x, 18.x, 20.x, 22.x ]
os: [ windows-latest, ubuntu-latest, macOS-latest ]

# Go
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Set up bundle
run: |
gem install bundler -v 1.17.3 # Bundler 2.x breaks test lockfile
gem install bundler -v 2.4.22 # 2.5+ breaks
bundle config jobs 4
bundle config retry 3
Expand Down
1 change: 0 additions & 1 deletion src/shared/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ module.exports = function copy (source, destination, params, callback) {
callback()
}
else {
console.log('>>>> RUNNING cp', source, destination)
// cpr(source, destination, { overwrite: true }, callback)
cp(source, destination, { recursive: true }, callback)
}
Expand Down

0 comments on commit 58f878a

Please sign in to comment.