Skip to content

Commit

Permalink
Fix node-version variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
danyalaytekin committed Nov 3, 2023
1 parent f9ebfb4 commit d26dadc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ on:

jobs:
checkout_and_test:
name: Node v${{ matrix.node }} on ${{ matrix.os }}
name: Lint and test on ${{ matrix.os }} with ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [12, 14, 16]
steps:
- name: Set git config
- name: Normalise line-ending handling in Git
shell: bash
run: |
git config --global core.autocrlf false
if: runner.os == 'Windows'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
Expand Down

0 comments on commit d26dadc

Please sign in to comment.