From f1da4c7be115db6727a49ddaf4edb07184616828 Mon Sep 17 00:00:00 2001 From: James Ives Date: Sat, 16 May 2020 18:19:08 -0400 Subject: [PATCH] Migrates to using yarn over npm --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9acdc34f..2d6abb9e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,11 +16,14 @@ jobs: - name: Checkout uses: actions/checkout@v1 + - name: Install Yarn + run: npm install -g yarn + - name: Install and Test run: | - npm install - npm run-script lint - npm run-script test + yarn install + yarn lint + yarn test - name: Uploade CodeCov Report uses: codecov/codecov-action@v1