From 1d8d5ac0a5a0d4ef78cac5630490596fff3f40c2 Mon Sep 17 00:00:00 2001 From: Michael Cousins Date: Tue, 9 Apr 2024 12:19:54 -0400 Subject: [PATCH] Remove legacy playwright tests from CI (#502) --- .github/workflows/ci.yml | 11 ----------- package.json | 2 +- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 697c92dd..77c34a48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,6 @@ jobs: - name: Install 🔧 uses: viamrobotics/js-config/.github/actions/setup@0006127efb3f62669f662ca31c555a49a034935e - - name: Install Playwright Browsers - run: pnpm -C packages/legacy playwright-install --with-deps - - name: Build 🏗️ run: pnpm run build @@ -52,14 +49,6 @@ jobs: with: path: packages/storybook/prime - - name: Upload Playwright test artifacts - uses: actions/upload-artifact@v3 - if: ${{ always() }} - with: - name: playwright-report - path: packages/legacy/playwright-report/ - retention-days: 30 - deploy-npm: if: ${{ github.repository == 'viamrobotics/prime' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} needs: build diff --git a/package.json b/package.json index d17be5b1..ae132150 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,6 @@ "build": "pnpm -r --aggregate-output build", "check": "pnpm -r --aggregate-output check", "format": "pnpm -r --aggregate-output format", - "test": "pnpm -r --aggregate-output test" + "test": "pnpm -r --aggregate-output --filter \\!./packages/legacy test" } }