Skip to content

Bump codecov/codecov-action from 4 to 5 #156

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #156

Workflow file for this run

name: Tests
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn --immutable
- run: yarn add -D @types/node@${{ matrix.node-version }}
- run: yarn tsc
- run: yarn lint --max-warnings=0
- run: yarn test --coverage
- uses: codecov/codecov-action@v5
with:
flags: "node_${{ matrix.node-version }}"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}