From f97b6b0151e1bf01ffa4c4687617d57373b639f7 Mon Sep 17 00:00:00 2001 From: morenol <22335041+morenol@users.noreply.github.com> Date: Sat, 23 Sep 2023 17:49:20 +0000 Subject: [PATCH] Fix matrix input name (#252) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21d752f3..8a71032f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: make check-clippy test: - name: Smoke test (${{ matrix.os }}, ${{ matrix.node }}) + name: Smoke test (${{ matrix.os }}, ${{ matrix.node-version }}) runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -62,7 +62,7 @@ jobs: # os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, macOS-latest] rust: [stable] - node: [ '16', '18', '20' ] + node-version: [ '16', '18', '20' ] steps: - uses: actions/checkout@v4 - name: Cancel Workflow Action