From daff2204820cb2b1b002b6044942315fb206a44e Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 20 Jun 2019 09:45:17 -0400 Subject: [PATCH 1/3] Update main.workflow --- .github/main.workflow | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 923068e..6367d83 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -12,13 +12,14 @@ jobs: with: version: 10.x - - name: npm install # Explicitly uninstall husky so that we avoid issues with git hooks/node versioning. # Should switch to clean checkout instead when supported. - run: npm prune --production && npm install && npm uninstall husky + run: npm prune --production + run: npm install + run: npm uninstall husky - name: Lint run: npm run format-check - name: npm test - run: npm test \ No newline at end of file + run: npm test From 4073addd0fef3d2af7cc68dae0e34bbc27e3e877 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 20 Jun 2019 09:55:28 -0400 Subject: [PATCH 2/3] Rename main.workflow to main.workflow.yml --- .github/{main.workflow => main.workflow.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{main.workflow => main.workflow.yml} (100%) diff --git a/.github/main.workflow b/.github/main.workflow.yml similarity index 100% rename from .github/main.workflow rename to .github/main.workflow.yml From 9629dab57ecda16d5b8108b2cbefa8dfb5fc5a86 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 20 Jun 2019 09:56:41 -0400 Subject: [PATCH 3/3] Update main.workflow.yml --- .github/main.workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/main.workflow.yml b/.github/main.workflow.yml index 6367d83..51556e7 100644 --- a/.github/main.workflow.yml +++ b/.github/main.workflow.yml @@ -14,9 +14,9 @@ jobs: # Explicitly uninstall husky so that we avoid issues with git hooks/node versioning. # Should switch to clean checkout instead when supported. - run: npm prune --production - run: npm install - run: npm uninstall husky + - run: npm prune --production + - run: npm install + - run: npm uninstall husky - name: Lint run: npm run format-check