Skip to content

Commit

Permalink
chore: fix aws CI (#197)
Browse files Browse the repository at this point in the history
Since we install the whole project on AWS CI, we are faced with 2 issues:
- the yarn.lock file doesn't get packages when we push dependencies with npm-bundle
- AWS doesn't support node 18 so is still running Node 16

Husky v9 doesn't support node 16, so ensuring we install node 16 as a quick fix
  • Loading branch information
Almouro authored Jan 26, 2024
1 parent b04984d commit c9a5fcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-custom-rules": "link:./packages/eslint-plugin-flashlight-eslint-rules/dist",
"eslint-plugin-import": "^2.26.0",
"husky": ">=6",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8147,7 +8147,7 @@ humanize-ms@^1.2.1:
dependencies:
ms "^2.0.0"

husky@>=6:
husky@^8.0.3:
version "8.0.3"
resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184"
integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==
Expand Down

0 comments on commit c9a5fcb

Please sign in to comment.