mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-07 11:42:55 +00:00
35 lines
704 B
YAML
35 lines
704 B
YAML
|
name: Run tests and upload coverage
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
pull_request:
|
||
|
branches: [main]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: Run tests and collect coverage
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Set up Node
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: 'latest'
|
||
|
|
||
|
- name: Configure Corepack
|
||
|
run: corepack enable
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: yarn install --frozen-lockfile
|
||
|
|
||
|
- name: Run tests
|
||
|
run: yarn coverage
|
||
|
|
||
|
- name: Upload results to Codecov
|
||
|
uses: codecov/codecov-action@v5
|
||
|
with:
|
||
|
token: ${{ secrets.CODECOV_TOKEN }}
|