Skip to content

Commit

Permalink
ci: change matrix.node to matrix.node_version (#850)
Browse files Browse the repository at this point in the history
All the other Js Octokit repos use `node_version`, therefore this workflow should be normalized to use the same names
  • Loading branch information
wolfy1339 authored May 15, 2023
1 parent 6077c18 commit c38a34a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node:
node_version:
- 14
- 16
- 18
name: Node ${{ matrix.node }}
name: Node ${{ matrix.node_version }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
node-version: ${{ matrix.node_version }}
cache: npm
- run: npm ci
- run: npm test
Expand Down

0 comments on commit c38a34a

Please sign in to comment.