From 100ba62c97c42b42a46409bc6a9d4b9d44c8c560 Mon Sep 17 00:00:00 2001 From: Trevor Blades Date: Sun, 10 Nov 2019 18:39:38 -0800 Subject: [PATCH] Update nodejs.yml --- .github/workflows/nodejs.yml | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ae542ef..3c4ed43 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,23 +1,12 @@ name: Node CI - on: [push] - jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node: [10] - steps: - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v1 + - uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node }} - - name: npm install and test - run: | - npm install - npm test + node-version: 12 + - run: npm install + - run: npm test