We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df658e commit 474cc40Copy full SHA for 474cc40
.github/workflows/cypress.yml
@@ -90,6 +90,10 @@ jobs:
90
- name: Install npm dependencies
91
run: |
92
npm ci
93
+ - name: Install Firefox
94
+ run: |
95
+ sudo apt-get update
96
+ sudo apt-get install -y firefox
97
- name: Run Cypress
98
uses: cypress-io/github-action@v6
99
with:
@@ -108,5 +112,5 @@ jobs:
108
112
# pass GitHub token to allow accurately detecting a build vs a re-run build
109
113
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
110
114
# better cypress run titles
111
- COMMIT_INFO_MESSAGE: ${{github.event.pull_request.title}}
- COMMIT_INFO_SHA: ${{github.event.pull_request.head.sha}}
115
+ COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }}
116
+ COMMIT_INFO_SHA: ${{ github.event.pull_request.head.sha }}
0 commit comments