pipeline.yml•836 B
name: Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.node-version == '20.x'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info