From 6b9204b3ed72fd38eea5e973ed84059e029e80c3 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Fri, 7 Jun 2019 16:47:56 -0400 Subject: [PATCH] Try pruning first so that devDeps definitely aren't installed --- .github/main.workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/main.workflow.yml b/.github/main.workflow.yml index 7d3a990d..5494da85 100644 --- a/.github/main.workflow.yml +++ b/.github/main.workflow.yml @@ -14,7 +14,7 @@ jobs: version: 10.x - name: npm install - run: npm install + run: npm prune --production && npm install - name: Lint run: npm run format-check