From 276a95ef7bec614ca0019f1e4f117d3a0bf80de8 Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Tue, 27 Aug 2019 14:06:56 -0400 Subject: [PATCH] Update workflow --- .github/workflows/checkin.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checkin.yml b/.github/workflows/checkin.yml index cf4f0d6..ec927bd 100644 --- a/.github/workflows/checkin.yml +++ b/.github/workflows/checkin.yml @@ -7,14 +7,14 @@ jobs: steps: - uses: actions/checkout@v1 - - name: "npm ci" - run: npm ci + - name: "yarn ci" + run: yarn ci - - name: "npm run build" - run: npm run build + - name: "yarn build" + run: yarn build - - name: "npm run test" - run: npm run test + - name: "yarn test" + run: yarn test - name: "check for uncommitted changes" # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed.