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 23, 2022
1 parent 1b0d5ef commit 993d5bb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
7 changes: 6 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/browser-tools@1.3.0

workflows:
version: 2
build-and-test:
Expand All @@ -13,8 +16,10 @@ workflows:
jobs:
build-and-test:
docker:
- image: circleci/node:12.14.0-browsers
- image: cimg/node:16.14.0-browsers
steps:
- 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Plus d'informations sur les [tags git ici](https://git-scm.com/book/fr/v2/Les-ba

* `git clone https://github.com/1024pix/pix-ui.git`
* `cd pix-ui`
* `npm install`
* `npm install --no-audit`

##### Création d'un composant Pix-UI

Expand Down
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.

5 changes: 3 additions & 2 deletions 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,7 +34,7 @@
"lint:hbs:fix": "npm run lint:hbs -- --fix",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"preinstall": "npx npm-dependency-exclusion",
"preinstall": "npx check-engine && npx npm-dependency-exclusion",
"start": "ember serve",
"storybook": "ember build && ember serve & start-storybook -p 9001 -s dist",
"test": "ember test",
Expand Down

0 comments on commit 993d5bb

Please sign in to comment.