From 87d747976d97464515bd59e759c0d27835c2a360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Fri, 22 May 2020 22:12:31 -0400 Subject: [PATCH] chore: use latest node in GitHub actions (#11598) * chore: use latest node and update actions * chore: clean up unused information --- .github/workflows/coverage.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 03738da230..f50b56856c 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,23 +5,15 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [13.x] steps: - name: Checkout code - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/checkout@v2 + - name: Use Node.js latest + uses: actions/setup-node@v2-beta with: - node-version: ${{ matrix.node-version }} - - name: Environment log - id: env - run: | - yarn --version + node-version: "*" - name: Generate coverage report run: | - yarn --version make -j test-ci-coverage - name: Upload coverage report uses: codecov/codecov-action@v1