Skip to content

Commit

Permalink
Merge pull request #4 from sellpy/sell-590-explicitly-use-ubuntu-2204…
Browse files Browse the repository at this point in the history
…-in-all-github-workflows

Explicitly set github workflows ubuntu version to 22.04
  • Loading branch information
stallberg authored Jan 27, 2025
2 parents 35aaca2 + ce6a32c commit 0727189
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -24,7 +24,7 @@ jobs:
run: yarn typecheck

test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -36,7 +36,7 @@ jobs:
run: yarn test --maxWorkers=2 --coverage

build-library:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -48,7 +48,7 @@ jobs:
run: yarn prepare

build-web:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
library:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 0727189

Please sign in to comment.