Skip to content

Commit

Permalink
ci: migrate from ubuntu 22 to 24
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub authored Oct 9, 2024
1 parent 2899848 commit e3de204
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
name: PR (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
strategy:
matrix:
os: [ ubuntu-22.04 ]
os: [ ubuntu-24.04 ]
node-version: [ 18, 22 ]

runs-on: ${{ matrix.os }}
Expand All @@ -73,9 +73,9 @@ jobs:

- run: yarn
- name: Unit test only
if: matrix.node-version != '22' || matrix.os != 'ubuntu-22.04'
if: matrix.node-version != '22' || matrix.os != 'ubuntu-24.044'
run: yarn test:unit

- name: Full test suite
if: matrix.node-version == '22' && matrix.os == 'ubuntu-22.04'
if: matrix.node-version == '22' && matrix.os == 'ubuntu-24.04'
run: yarn test

0 comments on commit e3de204

Please sign in to comment.