Skip to content

ci: Build packages before ci steps #14

ci: Build packages before ci steps

ci: Build packages before ci steps #14

Workflow file for this run

name: main
on:
workflow_dispatch:
push:
branches:
- main
jobs:
install_deps:
name: Install dependencies
uses: spuxx1701/ci-cd/.github/workflows/[email protected]

Check failure on line 12 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yml" -> "spuxx1701/ci-cd/.github/workflows/[email protected]" (source branch with sha:46005082e0fdde1d9f12a2b84711870b745070b2) : Invalid type for `on`
run_checks:
name: Run code checks
uses: spuxx1701/ci-cd/.github/workflows/[email protected]
needs:
- install_deps
with:
PNPM_BUILD: true
run_unit_tests:
name: Run unit tests
uses: spuxx1701/ci-cd/.github/workflows/[email protected]
needs:
- install_deps
with:
PNPM_BUILD: true
COVERAGE_FILENAME: reports/vitest/coverage/cobertura-coverage.xml
COVERAGE_FAIL_BELOW_MIN: 100