Skip to content

Commit

Permalink
Merge pull request #102 from dhensby/pulls/ci-ubuntu-runner
Browse files Browse the repository at this point in the history
ci: use ubuntu-22.04 runner
  • Loading branch information
dhensby authored Dec 4, 2024
2 parents 9f4db86 + b83c14b commit ca2ddbd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
commitlint:
name: Lint commits
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
codelint:
name: Lint code
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -51,7 +51,7 @@ jobs:
run: npm run lint
buildlint:
name: Check built files
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -70,7 +70,7 @@ jobs:
run: git diff-files --quiet -w
test:
name: Run tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- commitlint
- codelint
Expand All @@ -91,7 +91,7 @@ jobs:
run: npm run test -- --forbid-only
coverage:
name: Test coverage
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- commitlint
- codelint
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
name: Release
concurrency: release
if: ${{ github.repository_owner == 'tediousjs' && github.event_name == 'push' && github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- commitlint
- codelint
Expand Down

0 comments on commit ca2ddbd

Please sign in to comment.