Skip to content

chore: Update coverage #5

chore: Update coverage

chore: Update coverage #5

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Test
on:
workflow_dispatch:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
test-node-versions:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [18.x, 20.x, 21.x]
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: streetsidesoftware/actions/public/setup-node-pnpm@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install - Build - Test
uses: ./.github/actions/install-build-test
test-os:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [18.x]
os:
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: streetsidesoftware/actions/public/setup-node-pnpm@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install - Build - Test
uses: ./.github/actions/install-build-test
coverage:
permissions:
checks: write # for coverallsapp/github-action to create new checks
contents: read # for actions/checkout to fetch code
runs-on: ${{ matrix.os }}
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [18.x]
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- run: pnpm i
- run: pnpm run build
- run: pnpm run coverage
- name: Upload coverage Coveralls
uses: coverallsapp/github-action@9ba913c152ae4be1327bfb9085dc806cedb44057 # 1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
base-path: 'packages/perf-bench'
path-to-lcov: './packages/perf-bench/coverage/lcov.info'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3
with:
files: packages/perf-bench/coverage/lcov.info