Skip to content

apps/web: add more branches #14

apps/web: add more branches

apps/web: add more branches #14

Workflow file for this run

name: apps/web
on:
push:
paths:
- "apps/web/**"
- ".github/workflows/apps-web.yaml"
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v4
- name: Install packagemanager
run: corepack enable
- name: Install dependencies
run: pnpm install
- name: Run tests
run: cd apps/web && pnpm run test
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: apps-web