diff --git a/.github/main.workflow.yml b/.github/main.workflow.yml index 6b27b44a..810dc349 100644 --- a/.github/main.workflow.yml +++ b/.github/main.workflow.yml @@ -13,7 +13,9 @@ jobs: version: 10.x - name: npm install - run: npm prune --production && 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 - name: Lint run: npm run format-check