Skip to content

Commit

Permalink
chore: use latest node in GitHub actions (#11598)
Browse files Browse the repository at this point in the history
* chore: use latest node and update actions

* chore: clean up unused information
  • Loading branch information
JLHwung committed May 23, 2020
1 parent dcd23c7 commit 87d7479
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/coverage.yml
Expand Up @@ -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
Expand Down

0 comments on commit 87d7479

Please sign in to comment.