From 6408db765e9a0413e6c5b8231ecd3eb45352cc99 Mon Sep 17 00:00:00 2001 From: Alex Jurkiewicz Date: Fri, 17 Apr 2020 12:33:37 +1000 Subject: [PATCH] Correct workflow instructions --- .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 cf4f0d6..45679df 100644 --- a/.github/workflows/checkin.yml +++ b/.github/workflows/checkin.yml @@ -20,6 +20,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 install && npm run build'" \ "and check in all changes" \ && exit 1)