From 784203b95ad3e64841fcb3151dd1aca500514b1c Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Tue, 27 Aug 2019 14:08:29 -0400 Subject: [PATCH] work flow fix --- .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 ec927bd..b1008c0 100644 --- a/.github/workflows/checkin.yml +++ b/.github/workflows/checkin.yml @@ -7,9 +7,6 @@ jobs: steps: - uses: actions/checkout@v1 - - name: "yarn ci" - run: yarn ci - - name: "yarn build" run: yarn build @@ -20,6 +17,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 'yarn build && npm run format'" \ "and check in all changes" \ && exit 1)