From e5dbf85f989b5a0bc5b056d71a82b87781eb9908 Mon Sep 17 00:00:00 2001 From: Nick Mitchell Date: Thu, 30 Jan 2025 14:45:32 -0500 Subject: [PATCH] test: update github actions for react ui to use npm not yarn This slipped through the cracks of #339 Signed-off-by: Nick Mitchell --- .github/workflows/pdl-live-react-tests.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pdl-live-react-tests.yml b/.github/workflows/pdl-live-react-tests.yml index b7eb8b7c9..a185ecb61 100644 --- a/.github/workflows/pdl-live-react-tests.yml +++ b/.github/workflows/pdl-live-react-tests.yml @@ -24,11 +24,9 @@ jobs: uses: actions/setup-node@v4 with: node-version: 22 - - name: Enable Corepack - run: corepack enable - name: Install dependencies - run: yarn + run: npm ci - name: Install Playwright Browsers - run: yarn playwright install --with-deps + run: npx playwright install --with-deps - name: Test pdl-live viewer - run: yarn test + run: npm test