Skip to content

Commit

Permalink
ci: add ubuntu 24.04 to tested operating systems
Browse files Browse the repository at this point in the history
add 10 minute timeout to each job
  • Loading branch information
MikeMcC399 committed May 14, 2024
1 parent 289d900 commit 3ff9114
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/example-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:

basic-ubuntu-20:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -30,6 +31,20 @@ jobs:

basic-ubuntu-22:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Cypress tests
uses: ./
with:
working-directory: examples/basic
build: npx cypress info

basic-ubuntu-24:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -42,6 +57,7 @@ jobs:

basic-on-windows:
runs-on: windows-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -54,6 +70,7 @@ jobs:

basic-on-mac:
runs-on: macos-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -69,6 +86,7 @@ jobs:
# https://github.com/cypress-io/github-action/issues/327
basic-without-binary-install:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 3ff9114

Please sign in to comment.