Skip to content

Commit

Permalink
[TECH] Fixer la version NodeJS à 16.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 1, 2022
2 parents 327cf5c + c6e375c commit 74bf9ab
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
version: 2.1

orbs:
browser-tools: circleci/[email protected]

workflows:
version: 2
build-and-test:
Expand All @@ -13,8 +16,11 @@ workflows:
jobs:
build-and-test:
docker:
- image: circleci/node:12.14.0-browsers
- image: cimg/node:16.14.0-browsers
steps:
- run: sudo npm i -g [email protected]
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- checkout
- run: npm ci
- run: npm run lint:js
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13.0
16.14.0
6 changes: 4 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.13.2"
},
"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 74bf9ab

Please sign in to comment.