Skip to content

Commit

Permalink
Chore: Issue 1647 - Dependency updates for multiple packages (#2092)
Browse files Browse the repository at this point in the history
* Chore: Issue 1647 - Dependency updates for multiple packages

* Chore: Issue 1647 - Dependency updates for multiple packages
  • Loading branch information
bhushan-ebi authored Aug 8, 2024
1 parent 74e7459 commit b096636
Show file tree
Hide file tree
Showing 5 changed files with 817 additions and 1,350 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install and test
Expand Down
7 changes: 4 additions & 3 deletions .husky/_/husky.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/sh
if [ -z "$husky_skip_init" ]; then
debug () {
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
if [ "$HUSKY_DEBUG" = "1" ]; then
echo "husky (debug) - $1"
fi
}

readonly hook_name="$(basename "$0")"
Expand All @@ -23,8 +25,7 @@ if [ -z "$husky_skip_init" ]; then

if [ $exitCode != 0 ]; then
echo "husky - $hook_name hook exited with code $exitCode (error)"
exit $exitCode
fi

exit 0
exit $exitCode
fi
Loading

0 comments on commit b096636

Please sign in to comment.