Skip to content

Commit bd3fa55

Browse files
committed
fix node version to v16.14.0 and upgrade npm to v8.13.2
1 parent 2d880a5 commit bd3fa55

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.circleci/config.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
version: 2.1
22

3+
orbs:
4+
browser-tools: circleci/[email protected]
5+
36
workflows:
47
version: 2
58
build-and-test:
@@ -13,8 +16,11 @@ workflows:
1316
jobs:
1417
build-and-test:
1518
docker:
16-
- image: circleci/node:12.14.0-browsers
19+
- image: cimg/node:16.14.0-browsers
1720
steps:
21+
- run: npm i -g [email protected]
22+
- browser-tools/install-chrome
23+
- browser-tools/install-chromedriver
1824
- checkout
1925
- run: npm ci
2026
- run: npm run lint:js

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.13.0
1+
16.14.0

package-lock.json

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.13.2"
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)