From 702539d44b3ff19b80851702ed863d1a04cb76d7 Mon Sep 17 00:00:00 2001 From: Ethan Lane Date: Mon, 29 Aug 2022 20:13:10 +0100 Subject: [PATCH] Update workflow to use yarn --- .github/workflows/main_vylbot-prod-app-01.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main_vylbot-prod-app-01.yml b/.github/workflows/main_vylbot-prod-app-01.yml index 048c2ec..2931e6c 100644 --- a/.github/workflows/main_vylbot-prod-app-01.yml +++ b/.github/workflows/main_vylbot-prod-app-01.yml @@ -21,11 +21,11 @@ jobs: with: node-version: '16.x' - - name: npm install, build, and test + - name: yarn install, build, and test run: | - npm install - npm run build --if-present - npm run test --if-present + yarn install --frozen-lockfile + yarn build + yarn test - name: Upload artifact for deployment job uses: actions/upload-artifact@v2