From 768ad927720c345d30b4d32a9d346d8ffdef1197 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Fri, 9 Aug 2019 16:09:30 -0400 Subject: [PATCH] Remove format step --- .github/workflows/checkin.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/checkin.yml b/.github/workflows/checkin.yml index d698b6c..cf4f0d6 100644 --- a/.github/workflows/checkin.yml +++ b/.github/workflows/checkin.yml @@ -16,13 +16,10 @@ jobs: - name: "npm run test" run: npm run test - - name: "check format" - run: npm run format-check - - name: "check for uncommitted changes" # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. run: | git diff --exit-code --stat -- . ':!node_modules' \ || (echo "##[error] found changed files after build. please 'npm run build && npm run format'" \ "and check in all changes" \ - && exit 1) \ No newline at end of file + && exit 1)