Skip to content

v0.10.4

v0.10.4 #2910

Workflow file for this run

name: "Coverage Badge"
on:
push:
branches-ignore:
- "renovate/**"
pull_request:
branches-ignore:
- "renovate/**"
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2.2.4
with:
version: 7.x.x
run_install: false
- run: pnpm install --frozen-lockfile
- run: pnpm test
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${{ secrets.CODECOV_TOKEN }}