Skip to content

chore: Switch to setting prereleases in config #92

chore: Switch to setting prereleases in config

chore: Switch to setting prereleases in config #92

Workflow file for this run

name: main
on:
workflow_dispatch:
push:
branches:
- main
jobs:
run_checks:
name: Run code checks
uses: spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v4.0.0
with:
PNPM_BUILD: true
run_unit_tests:
name: Run tests (vitest)
uses: spuxx1701/ci-cd/.github/workflows/pnpm_run_tests_vitest.yml@v4.0.0
with:
PNPM_BUILD: true
COVERAGE_FILENAME: reports/vitest/coverage/cobertura-coverage.xml
COVERAGE_FAIL_BELOW_MIN: 100
run_release_please:
name: Run release-please
uses: spuxx1701/ci-cd/.github/workflows/pnpm_release-please.yml@v4.0.0
needs:
- create_prerelease_pr

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

View workflow run for this annotation

GitHub Actions / main

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 29, Col: 7): Job 'run_release_please' depends on unknown job 'create_prerelease_pr'.
secrets:
TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }}