Skip to content

Commit 82c3fd6

Browse files
committed
ci: fix typo in github actions runner configuration
Resolves an issue where `runs-on` was misspelled as `ubunutu-latest` instead of `ubuntu-latest`.
1 parent 6619d80 commit 82c3fd6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ defaults:
1717

1818
jobs:
1919
test:
20-
runs-on: ubunutu-latest
20+
runs-on: ubuntu-latest
2121
steps:
2222
- name: Initialize environment
2323
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c4344a4e20dbdf9cb8eeb7a7eb91431b98eabd99

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: pnpm ng-dev format changed --check ${{ github.event.pull_request.base.sha }}
2929

3030
test:
31-
runs-on: ubunutu-latest
31+
runs-on: ubuntu-latest
3232
steps:
3333
- name: Initialize environment
3434
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c4344a4e20dbdf9cb8eeb7a7eb91431b98eabd99

0 commit comments

Comments
 (0)