Skip to content
New issue

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

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

Already on GitHub? # to your account

ci: update ubuntu #2216

Merged
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:

jobs:
validate:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: Validate
if: github.event_name != 'pull_request_review' || github.event.pull_request.head.ref == 'changeset-release/main'
steps:
Expand All @@ -48,7 +48,7 @@ jobs:
run: pnpm build

unit-tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: Unit Tests
if: github.event_name != 'pull_request_review' || github.event.pull_request.head.ref == 'changeset-release/main'

Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
overwrite: true

e2e-tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: E2E Tests
if: github.event_name != 'pull_request_review' || github.event.pull_request.head.ref == 'changeset-release/main'

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

# Upload all the coverage reports
report-coverage:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [e2e-tests, unit-tests]
steps:
- uses: actions/download-artifact@v4
Expand All @@ -165,4 +165,4 @@ jobs:
- uses: codecov/codecov-action@v4
with:
directory: coverage
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}
Loading