Skip to content

Commit 3b4bab4

Browse files
committed
fix node version to 16.14.0
1 parent 53f3f4c commit 3b4bab4

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.circleci/config.yml

+7-2
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,10 +16,12 @@ 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+
- browser-tools/install-chrome
22+
- browser-tools/install-chromedriver
1823
- checkout
19-
- run: npm ci
24+
- run: npm ci --no-audit
2025
- run: npm run lint:js
2126
- run: npm run lint:hbs
2227
- 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)