chore(deps): update dependency ubuntu to v24 #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: timeouts | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-24.04 | |
# stop the job if it runs over 10 minutes | |
# to prevent a hanging process from using all your CI minutes | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
# you can specify individual step timeout too | |
timeout-minutes: 5 | |
with: | |
command: npm run expect -- --env lastName=Smith | |
env: | |
CYPRESS_firstName: Joe |