Skip to content

Merge branch 'main' of https://github.com/Legalfina/ngx-zoneless-scro… #10

Merge branch 'main' of https://github.com/Legalfina/ngx-zoneless-scro…

Merge branch 'main' of https://github.com/Legalfina/ngx-zoneless-scro… #10

Workflow file for this run

name: Run tests and upload coverage
on: push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node
uses: actions/setup-node@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test -- --coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}