Skip to content

Merge pull request #120 from spuxx-dev/dependabot/npm_and_yarn/npm_an… #156

Merge pull request #120 from spuxx-dev/dependabot/npm_and_yarn/npm_an…

Merge pull request #120 from spuxx-dev/dependabot/npm_and_yarn/npm_an… #156

Workflow file for this run

name: Main
on:
workflow_dispatch:
push:
branches:
- main
jobs:
run_checks:
name: Run code checks
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_run_checks.yml@v4.1.0
run_unit_tests:
name: Run tests (vitest)
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_run_tests_vitest.yml@v4.1.0
with:
COVERAGE_DISABLE: true
staging_spuxx_api:
name: Release artifact (spuxx-api)
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0

Check failure on line 21 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" -> "spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0" (source branch with sha:e03eb9a709c31ae863768452f648853e276a591b) --> "spuxx1701/ci-cd/.github/workflows/docker_build_and_push_image.yml@v4.1.0" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
needs:
- run_checks
- run_unit_tests
with:
tag: branch
path: ./apps/spuxx-api
dockerfile: ./apps/spuxx-api/Dockerfile
dockerhub_repository: spuxx-api
secrets:
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
staging_toledo:
name: Release artifact (toledo)
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
needs:
- run_checks
- run_unit_tests
with:
tag: branch
dockerfile: ./apps/toledo/Dockerfile
dockerhub_repository: toledo
secrets:
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
run_release_please:
name: Run release-please
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_release-please.yml@v4.1.0
needs:
- run_checks
- run_unit_tests
secrets:
TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }}