build: fix gha issues (#40)

This commit is contained in:
Mazen Touati
2026-01-17 21:09:14 +01:00
committed by GitHub
parent e1b844cee0
commit edd9b7be4f
3 changed files with 3 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
persist-credentials: false
- name: Check for changes
id: filter

View File

@@ -30,6 +30,7 @@ jobs:
with:
# Use headBranchName from the PR object
ref: ${{ fromJson(steps.release.outputs.pr).headBranchName }}
persist-credentials: false
- name: Setup Node
if: ${{ steps.release.outputs.pr }}

View File

@@ -13,7 +13,7 @@ import { defineConfig, devices } from '@playwright/test';
*/
export default defineConfig({
testDir: "./tests",
timeout: 60_000,
timeout: 120_000,
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */