From 4bebcdd4e60d6acf8cd0ed8d6cc8087ba5710bed Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 17 May 2020 21:45:36 -0700 Subject: [PATCH] Use workspaces in CI --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e3c450b2..80303eed 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -27,9 +27,9 @@ jobs: yarn workspace webamp build yarn workspace webamp build-library - name: Run Unit Tests - run: yarn test + run: yarn workspace webamp test - name: Run Integration Tests - run: yarn integration-tests + run: yarn workspace webamp integration-tests env: CI: true - name: Upload Screenshot Diffs