Tests: Browserstack: set unique build id for local runs

Useful for debugging
This commit is contained in:
larabr
2025-12-11 15:15:58 +01:00
committed by larabr
parent bfa569cc96
commit 7f0eec03ce

View File

@@ -7,7 +7,7 @@ const sharedBrowserstackCapabilities = {
project: `openpgpjs/${process.env.GITHUB_EVENT_NAME || 'push'}${process.env.LIGHTWEIGHT ? '/lightweight' : ''}@${process.env.GITHUB_REF_NAME}`,
name: process.env.GITHUB_WORKFLOW || 'local',
build: process.env.GITHUB_SHA || 'local',
build: process.env.GITHUB_SHA || `local@${Date.now()}`,
'browserstack.acceptInsecureCerts': true
};