Skip to content

Commit 07c09d6

Browse files
committed
Fix typo in workflows
- Changed `input.os` to `inputs.os`.
1 parent fac65ad commit 07c09d6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/prepare-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99

1010
jobs:
1111
prepare-npm-cache:
12-
name: Prepare npm cache for ${{ input.os }}
13-
runs-on: ${{ input.os }}
12+
name: Prepare npm cache for ${{ inputs.os }}
13+
runs-on: ${{ inputs.os }}
1414

1515
steps:
1616
- uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
node-version: [14.x, 16.x]
16-
name: Node v${{ matrix.node-version }} on ${{ input.os }}
17-
runs-on: ${{ input.os }}
16+
name: Node v${{ matrix.node-version }} on ${{ inputs.os }}
17+
runs-on: ${{ inputs.os }}
1818

1919
steps:
2020
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)