From 288f0df505b98041b5ed5c8985bbf3ed99493da0 Mon Sep 17 00:00:00 2001 From: Darya Zata Date: Fri, 8 Apr 2022 22:24:27 +0200 Subject: [PATCH] add matrix node version --- .github/workflows/matrix.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 1ce0ff2..4f8b172 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -6,17 +6,18 @@ jobs: node-version: strategy: matrix: - os: - - ubuntu-latest - - windows-latest - - macos-latest - - runs-on: ${{ matrix.os }} + # os: + # - ubuntu-latest + # - windows-latest + # - macos-latest + node-version: [6, 17, 10] + # runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - name: Log Node Version run: node -v - uses: actions/setup-node@v1 with: - node-version: 10 + node-version: ${{ matrix.node_version }} - name: Log Node Version run: node -v