Skip to content

Merge pull request #750 from bhovhannes/renovate/evilmartians-lefthoo… #1077

Merge pull request #750 from bhovhannes/renovate/evilmartians-lefthoo…

Merge pull request #750 from bhovhannes/renovate/evilmartians-lefthoo… #1077

Workflow file for this run

name: Checks
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v4
name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm --version
- run: npm ci
- run: npm test -- --ci
- uses: codecov/codecov-action@v3
with:
directory: ./coverage/
fail_ci_if_error: true
path_to_write_report: ./coverage/codecov_report.txt