From 6b6a3831593a95a94b21c858e5a31c7f39a7b01e Mon Sep 17 00:00:00 2001 From: StroepWafel Date: Tue, 23 Jun 2026 09:24:23 +0930 Subject: [PATCH] CI uploads artifacts --- .github/workflows/pr-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index 40d40d17..1744162a 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -31,9 +31,18 @@ jobs: run: npm test - name: Build extension + id: build uses: ./.github/actions/build-extension with: gh_release_update_check: "false" + - name: Upload extension zips + uses: actions/upload-artifact@v4 + with: + name: extension-zips + path: | + ${{ steps.build.outputs.chrome_zip }} + ${{ steps.build.outputs.firefox_zip }} + - name: Smoke tests run: npm run test:smoke