From c2624fbb1aefca117bab3547f136bd24cc54a132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Tue, 8 Dec 2020 14:40:25 +0100 Subject: Fix node version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- .github/workflows/lint.yml | 16 ++++++++-------- .github/workflows/node.yml | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8d74b98f..c41152e6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -57,16 +57,16 @@ jobs: strategy: matrix: - node-versions: [12.x] + node-version: [12.x] - name: eslint node${{ matrix.node-versions }} + name: eslint node${{ matrix.node-version }} steps: - uses: actions/checkout@v2 - - name: Set up node ${{ matrix.node-versions }} + - name: Set up node ${{ matrix.node-version }} uses: actions/setup-node@v1 with: - node-versions: ${{ matrix.node-versions }} + node-version: ${{ matrix.node-version }} - name: Install dependencies run: npm ci @@ -79,16 +79,16 @@ jobs: strategy: matrix: - node-versions: [12.x] + node-version: [12.x] - name: stylelint node${{ matrix.node-versions }} + name: stylelint node${{ matrix.node-version }} steps: - uses: actions/checkout@v2 - - name: Set up node ${{ matrix.node-versions }} + - name: Set up node ${{ matrix.node-version }} uses: actions/setup-node@v1 with: - node-versions: ${{ matrix.node-versions }} + node-version: ${{ matrix.node-version }} - name: Install dependencies run: npm ci diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index d5c403df..a971a7e6 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -13,16 +13,16 @@ jobs: strategy: matrix: - node-versions: [12.x] + node-version: [12.x] - name: node${{ matrix.node-versions }} + name: node${{ matrix.node-version }} steps: - uses: actions/checkout@v2 - - name: Set up node ${{ matrix.node-versions }} + - name: Set up node ${{ matrix.node-version }} uses: actions/setup-node@v1 with: - node-versions: ${{ matrix.node-versions }} + node-version: ${{ matrix.node-version }} - name: Install dependencies & build run: | -- cgit v1.2.3