We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e435bc commit 9c8ef39Copy full SHA for 9c8ef39
.github/workflows/playwright.yml
@@ -21,18 +21,14 @@ jobs:
21
- name: Install dependencies
22
run: npm ci
23
24
- - id: get-branch-name
25
- run: echo "::set-output name=branch_name::$(git symbolic-ref --short HEAD)"
26
- shell: bash
27
-
28
- name: Run Playwright tests
29
run: npx playwright test
30
env:
31
VRT_APIURL: "https://visual-regression-tracker.com:4200"
32
VRT_PROJECT: "VRT"
33
VRT_ENABLESOFTASSERT: false
34
VRT_APIKEY: ${{ secrets.VRT_API_KEY }}
35
- VRT_BRANCHNAME: ${{ github.head_ref || steps.get-branch-name.outputs.branch_name }}
+ VRT_BRANCHNAME: ${{ github.head_ref || github.ref_name }}
36
VRT_CIBUILDID: "Github run_id: ${{ github.run_id }}"
37
38
- uses: actions/upload-artifact@v3
0 commit comments