From 56d7f76843d214a8325d40b7f467ea69d31710c5 Mon Sep 17 00:00:00 2001 From: Danielle Huisman Date: Sun, 31 Mar 2024 17:22:55 +0200 Subject: [PATCH] Add Playwright install --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85fd8c3..3d9d256 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,10 @@ jobs: with: version: 'latest' + - name: Install Playwright + run: npx playwright install --with-deps chromium + shell: sh + - name: Check formatting run: cargo fmt --all --check @@ -48,3 +52,10 @@ jobs: - name: Test run: cargo test --all-features + + - name: Upload visual snapshot diffs + uses: actions/upload-artifact@v4 + if: always() + with: + name: visual-snapshots-diff + path: target/tmp/floating-ui/packages/dom/test-results