chore: use latest node in GitHub actions (#11598)
* chore: use latest node and update actions * chore: clean up unused information
This commit is contained in:
parent
dcd23c7949
commit
87d747976d
16
.github/workflows/coverage.yml
vendored
16
.github/workflows/coverage.yml
vendored
@ -5,23 +5,15 @@ on: [push, pull_request]
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node-version: [13.x]
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v2
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js latest
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v2-beta
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: "*"
|
||||||
- name: Environment log
|
|
||||||
id: env
|
|
||||||
run: |
|
|
||||||
yarn --version
|
|
||||||
- name: Generate coverage report
|
- name: Generate coverage report
|
||||||
run: |
|
run: |
|
||||||
yarn --version
|
|
||||||
make -j test-ci-coverage
|
make -j test-ci-coverage
|
||||||
- name: Upload coverage report
|
- name: Upload coverage report
|
||||||
uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user