Skip to content

Tags: odongohcoder/github-action

Tags

v2.2.7

Toggle v2.2.7's commit message
fix(deps): update dependency hasha to v5.2.2

v2.2.6

Toggle v2.2.6's commit message
fix(deps): update dependency @octokit/core to v2.5.4

v2.2.5

Toggle v2.2.5's commit message
fix(deps): update dependency @actions/io to v1.0.2

v2.2.4

Toggle v2.2.4's commit message
fix(deps): update dependency @actions/exec to v1.0.4

v2.2.3

Toggle v2.2.3's commit message
fix(deps): update cache commit hash to bc821d0

v2.2.2

Toggle v2.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Update ciBuildId with jobId (cypress-io#175)

When doing action re-run and providing the GH token, we should get an accurate job id

v2.2.1

Toggle v2.2.1's commit message
fix: print more debug logs when fetching run id

v2.2.0

Toggle v2.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add missing parameter `quiet` to action.yml (cypress-io#171)

v2.1.1

Toggle v2.1.1's commit message
fix: exit with non-zero code on failed tests, close cypress-io#168

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: export dashboard url from the action (cypress-io#166)

You can use the output by: 
- giving Cypress action an ID, for example `cypress`
- allowing the Cypress action to pass or fail
- using `${{ steps.cypress.outputs.dashboardUrl }}`

```yml
- name: Cypress tests
  uses: cypress-io/github-action@v2
  # let's give this action an ID so we can refer
  # to its output values later
  id: cypress
  # Continue the build in case of an error, as we need to set the
  # commit status in the next step, both in case of success and failure
  continue-on-error: true
  with:
    record: true
  env:
    CYPRESS_RECORD_KEY: ${{ secrets.RECORDING_KEY }}
- name: Print Dashboard URL
  run: |
    echo Cypress finished with: ${{ steps.cypress.outcome }}
    echo See results at ${{ steps.cypress.outputs.dashboardUrl }}
```