Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Ubuntu CI versions to 22.04 #43

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:

jobs:
build:
name: E2E Tests on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: E2E Tests on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 60

steps:
Expand Down Expand Up @@ -68,8 +68,8 @@ jobs:
key: ${{ github.run_number }}

browser-tests:
name: E2E Browser Tests on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: E2E Browser Tests on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 60
needs: [build]

Expand Down Expand Up @@ -109,8 +109,8 @@ jobs:
path: allure-results/*

electron-tests:
name: E2E Electron Tests on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: E2E Electron Tests on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 60
needs: [build]

Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:

generate-report:
name: Generate Report of E2E Electron Tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [browser-tests, electron-tests]

steps:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:

jobs:
prepare:
name: Performance benchmark on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: Performance benchmark on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
timeout-minutes: 20
steps:
- name: Checkout
Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
key: ${{ github.run_number }}

run-browser-tests:
name: Performance browser benchmark on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: Performance browser benchmark on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
needs: [prepare]
strategy:
matrix:
Expand Down Expand Up @@ -118,8 +118,8 @@ jobs:
path: performance-metrics/*

run-electron-tests:
name: Performance electron benchmark on ubuntu-latest with Node.js 20.x
runs-on: ubuntu-latest
name: Performance electron benchmark on ubuntu-22.04 with Node.js 20.x
runs-on: ubuntu-22.04
needs: [prepare]
strategy:
matrix:
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

generate-report:
name: Create Performance Report
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [run-browser-tests, run-electron-tests]
steps:
- name: Restore Build Result
Expand Down
Loading