Skip to content

tiered - upgrading c8 to 9.1.0 (#1061) #37

tiered - upgrading c8 to 9.1.0 (#1061)

tiered - upgrading c8 to 9.1.0 (#1061) #37

Workflow file for this run

name: codecov
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '20' ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Start Services
run: yarn test:services:start
- name: Install Dependencies
run: yarn
- name: Test Packages
run: yarn test
- name: Code Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_KEY }}
verbose: true
files: ./coverage/lcov.info