Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.

Commit 02cde45

Browse files
committed
fix: update workflow to use ubuntu-22.04 for consistency
1 parent a5d2c1b commit 02cde45

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test-on-pr-branch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: pull_request
33

44
jobs:
55
unit:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- name: Checkout
99
uses: actions/checkout@v3
@@ -22,7 +22,7 @@ jobs:
2222
- name: Run unit tests
2323
run: npm run-script test:unit
2424
visual:
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v3
@@ -52,4 +52,4 @@ jobs:
5252
name: failed_screenshots
5353
path: |
5454
screenshots/*/failed/
55-
screenshots/*/baseline/
55+
screenshots/*/baseline/

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push, workflow_dispatch]
33

44
jobs:
55
test:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- name: Checkout
99
uses: actions/checkout@v3

.github/workflows/update-screenshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: workflow_dispatch
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
steps:
99
- name: Checkout
1010
uses: actions/checkout@v3

0 commit comments

Comments
 (0)