From 387a2aa3f0ab44379bca7645b9d4e4c1907ed486 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 6 Apr 2020 13:49:51 +0100 Subject: [PATCH] Switch testing to built-in Nodejs no issue --- .github/workflows/test.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 559eb80..6341f4f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,17 +6,10 @@ on: - master - 'renovate/*' jobs: - build: - runs-on: ubuntu-18.04 + test: + runs-on: ubuntu-latest if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) - strategy: - matrix: - node: [ 10 ] - name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node }} - run: yarn - run: yarn test:ci