Skip to content

Commit

Permalink
ci: print Node.js version in CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Oct 11, 2020
1 parent c05bed6 commit bf6dd46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 14]
name: Node ${{ matrix.node }}
node-version: [10, 12, 14]
name: Node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Check source code
Expand Down

0 comments on commit bf6dd46

Please sign in to comment.