Skip to content

Setup GHAs for collect coerage #2

Setup GHAs for collect coerage

Setup GHAs for collect coerage #2

Workflow file for this run

name: apps/web
on: push
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 dependencies
run: corepack prepare
run: pnpm install

Check failure on line 20 in .github/workflows/apps-web.yaml

View workflow run for this annotation

GitHub Actions / apps/web

Invalid workflow file

The workflow is not valid. .github/workflows/apps-web.yaml (Line: 20, Col: 9): 'run' is already defined
- 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 }}