From 8a01f974ce55370fd8a7a498e19e6b7244cfec42 Mon Sep 17 00:00:00 2001 From: Stephen Kilbourn Date: Wed, 6 Dec 2023 20:24:22 -0700 Subject: [PATCH] run veda setup scrupt in github action --- .github/workflows/playwright.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 76f168534..6c7def19b 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -13,8 +13,10 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 16 - - name: Install dependencies - run: npm install -g yarn && yarn + - name: Install yarn + run: npm install -g yarn + - name: Run Veda setup + run: ./.veda/setup - name: Install Playwright Browsers run: yarn playwright install --with-deps - name: Run Playwright tests