From f04bbf62b53a100d2054d6132a7ae438972b705a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Tue, 27 Oct 2020 17:33:43 -0400 Subject: [PATCH] chore: test on node 15 (#12265) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79d19c2313..de3a147050 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: - name: Use Node.js latest uses: actions/setup-node@v2-beta with: - node-version: "*" + node-version: "15" - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" @@ -99,14 +99,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [13, 12, 10, 8, 6] + node-version: [14, 13, 12, 10, 8, 6] 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 + node-version: "*" # Build Babel on latest node LTS versions - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)"