Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Remove playwright dependency install steps
Rūdolfs Ošiņš committed 3 years ago
commit 972b5ccf20e43b6f3270edb0db4760580b882018
parent d8dd0d8e5b1a6d373ff2fa870680235be03886d2
2 files changed +3 -7
modified .github/workflows/check-build.yml
@@ -19,7 +19,7 @@ jobs:
      - name: Install dependencies
        run: npm ci
      - name: Install Playwright Browsers
-
        run: npx playwright install --with-deps
+
        run: npx playwright install chromium
      - name: Build app
        run: npm run build
      - name: Run Playwright build smoke test
modified .github/workflows/check-e2e.yml
@@ -50,13 +50,9 @@ jobs:
          path: tests/visual/snapshots/**/*
          key: ${{ runner.os }}-snapshots

-
      - name: Install Playwright browsers and OS dependencies if cache miss
+
      - name: Install Playwright browsers
        if: steps.playwright-dep-cache.outputs.cache-hit != 'true'
-
        run: npx playwright install --with-deps
-

-
      - name: Install only Playwright OS dependencies if cache hit
-
        if: steps.playwright-dep-cache.outputs.cache-hit == 'true'
-
        run: npx playwright install-deps
+
        run: npx playwright install chromium firefox

      - name: Start http-api test server
        run: |