Skip to content

Commit 633f8aa

Browse files
committed
fix node version to 16.14.0
1 parent 53f3f4c commit 633f8aa

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ workflows:
1313
jobs:
1414
build-and-test:
1515
docker:
16-
- image: circleci/node:12.14.0-browsers
16+
- image: cimg/node:16.14.0-browsers
1717
steps:
1818
- checkout
19-
- run: npm ci
19+
- run: npm ci --no-audit
2020
- run: npm run lint:js
2121
- run: npm run lint:hbs
2222
- run: npm test

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"license": "MIT",
99
"author": "GIP Pix",
1010
"engines": {
11-
"node": "^16.13.0"
11+
"node": "16.14.0",
12+
"npm": "8.3.1"
1213
},
1314
"ember": {
1415
"edition": "octane"
@@ -33,6 +34,7 @@
3334
"lint:hbs:fix": "npm run lint:hbs -- --fix",
3435
"lint:js": "eslint .",
3536
"lint:js:fix": "npm run lint:js -- --fix",
37+
"preinstall": "npx check-engine",
3638
"start": "ember serve",
3739
"storybook": "ember build && ember serve & start-storybook -p 9001 -s dist",
3840
"test": "ember test",

0 commit comments

Comments
 (0)