From c3addb6d026333a36f9875aef96f8d8478733cff Mon Sep 17 00:00:00 2001 From: Jose Henrique Date: Fri, 10 Jul 2026 22:46:53 -0300 Subject: [PATCH] adding overwrite flag --- .gitea/workflows/pull-request.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull-request.yaml b/.gitea/workflows/pull-request.yaml index 24d7fea..330a317 100644 --- a/.gitea/workflows/pull-request.yaml +++ b/.gitea/workflows/pull-request.yaml @@ -64,10 +64,19 @@ jobs: with: node-version: 22 + - name: Set up required tools + run: sudo apt-get install unzip -y + - name: Install JS dependencies - run: | - mv vision-start/* . - npm ci + run: npm ci + + - name: Download build artifact + uses: actions/download-artifact@v3 + with: + name: pr-release-zip + + - name: Unpack build artifact + run: unzip -o -q ${{ env.ARCHIVE_NAME }} - name: Install Playwright Chromium run: npx playwright install --with-deps chromium