Skip to content

Commit

Permalink
use older ubuntu for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jirimoravcik committed Jan 15, 2025
1 parent 1cfb412 commit ffd5704
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest] # add windows-latest later
os: [ubuntu-22.04] # add windows-latest later
node-version: [14, 16]

steps:
Expand All @@ -39,7 +39,7 @@ jobs:
run: npm install
-
name: Add localhost-test to Linux hosts file
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: sudo echo "127.0.0.1 localhost-test" | sudo tee -a /etc/hosts
# -
# name: Add localhost-test to Windows hosts file
Expand All @@ -52,7 +52,7 @@ jobs:
lint:
name: Lint
needs: [build_and_test]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
-
Expand Down

0 comments on commit ffd5704

Please sign in to comment.