From 8db9e523402f22d1cbd4e5bbc182357703946ded Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 19 Jul 2024 16:04:23 -0400 Subject: [PATCH] CI: don't instruct the user to do `npm run format` (#267) --- .github/workflows/checkin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checkin.yml b/.github/workflows/checkin.yml index 39e67e1..d07bce3 100644 --- a/.github/workflows/checkin.yml +++ b/.github/workflows/checkin.yml @@ -31,6 +31,6 @@ jobs: # 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'" \ + || (echo "##[error] found changed files after build. please 'npm ci && npm run build'" \ "and check in all changes" \ && exit 1)