From 9f14d986601b552f3758f3cdad9a6814d10b3126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Thu, 13 Aug 2020 11:08:06 -0400 Subject: [PATCH] address review comments --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35fcf8552fce..932ee14d61dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,8 +10,6 @@ jobs: uses: actions/checkout@v2 - name: Use Node.js latest uses: actions/setup-node@v2-beta - with: - node-version: "*" - name: Generate coverage report run: | make -j test-ci-coverage @@ -23,16 +21,13 @@ jobs: legacy-node-version-test: runs-on: ubuntu-latest strategy: - fail-fast: true matrix: node-version: [6.x, 8.x] steps: - name: Checkout code uses: actions/checkout@v2 - name: Use Node.js latest - uses: actions/setup-node@v2-beta - with: - node-version: "*" # Build Babel on latest node versions + uses: actions/setup-node@v2-beta # Build Babel on latest node versions - name: Build run: | BABEL_ENV=production make -j bootstrap