From c1c30ff9d473fdecf9c574f0ce305a7c27c21cc7 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Tue, 28 Jan 2020 10:47:15 -0600 Subject: [PATCH] dropped macos, windows, and node 10 --- .github/workflows/nodejs.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 22aecdc..82911da 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -4,19 +4,14 @@ on: [push, pull_request] jobs: build-node: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - node-version: [10.x, 12.x] - os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 12.x uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node-version }} + node-version: 12.x - name: Get npm cache directory id: npm-cache run: |