Skip to content

Commit

Permalink
fix node version to 16.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nlepage committed Jun 21, 2022
1 parent 53f3f4c commit 633f8aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ workflows:
jobs:
build-and-test:
docker:
- image: circleci/node:12.14.0-browsers
- image: cimg/node:16.14.0-browsers
steps:
- checkout
- run: npm ci
- run: npm ci --no-audit
- run: npm run lint:js
- run: npm run lint:hbs
- run: npm test
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"license": "MIT",
"author": "GIP Pix",
"engines": {
"node": "^16.13.0"
"node": "16.14.0",
"npm": "8.3.1"
},
"ember": {
"edition": "octane"
Expand All @@ -33,6 +34,7 @@
"lint:hbs:fix": "npm run lint:hbs -- --fix",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"preinstall": "npx check-engine",
"start": "ember serve",
"storybook": "ember build && ember serve & start-storybook -p 9001 -s dist",
"test": "ember test",
Expand Down

0 comments on commit 633f8aa

Please sign in to comment.