Skip to content

Commit

Permalink
fix: remove yarn reference, bump node version in .circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
Fcmam5 committed Sep 11, 2020
1 parent 80044d0 commit d8a2873
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1 # use CircleCI 2.1
jobs:
build:
docker:
- image: circleci/node:10.16.3
- image: circleci/node:12.13.1
steps:
- checkout # special step to check out source code to working directory
- run:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"snyk-protect": "snyk protect",
"prepublishOnly": "npm run snyk-protect",
"lint": "eslint server",
"prepare": "yarn run snyk-protect",
"prepare": "npm run snyk-protect",
"stryker": "stryker run",
"flush-db": "node server/flush-db/index.js",
"validate-data-schemas": "node tools/validateDataSchemas"
Expand Down
2 changes: 1 addition & 1 deletion stryker.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module.exports = function (config) {
config.set({
mutator: 'javascript',
packageManager: 'yarn',
packageManager: 'npm',
mutate: [
'server/**/*.js',
],
Expand Down

0 comments on commit d8a2873

Please sign in to comment.