From b65ff6db8893c1c68f0f236c4b2d663e6c55f5ef Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 8 May 2019 20:50:53 +0300 Subject: [PATCH] Add 'yarn check --integrity' to CI tests (#1855) To prevent situations similar to: https://github.com/graphql/graphiql/pull/797 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8957f4a545..1b92e44e8a 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "scripts": { "watch": "node ./resources/watch.js", "test": "npm run lint && npm run check && npm run testonly", - "test:ci": "npm run lint -- --no-cache && npm run check && npm run testonly:cover", + "test:ci": "yarn check --integrity && npm run lint -- --no-cache && npm run check && npm run testonly:cover", "testonly": "mocha --full-trace src/**/__tests__/**/*-test.js", "testonly:cover": "nyc npm run testonly", "lint": "eslint --cache --report-unused-disable-directives src",