Skip to content

move these down

move these down #29

name: "💻 Main CI/CD Pipeline (prod)"
on:
workflow_dispatch:
push:
branches: [ "main" ]
jobs:
mini_test:
name: 🧪 MiniTest
uses: ./.github/workflows/_run_tests.yml
secrets: inherit
super_scaffolding:
name: ⚗️ Super Scaffolding Tests
uses: ./.github/workflows/_run_super_scaffolding_tests.yml
secrets: inherit
standardrb:
name: 🔬 Standardrb
uses: ./.github/workflows/_standardrb.yml
secrets: inherit
db_schema:
name: 🔎 DB Schema Check
uses: ./.github/workflows/_database_schema_check.yml
secrets: inherit
deploy:
name: 🏗 Deploy to Heroku
uses: ./.github/workflows/_deploy_heroku.yml
needs: [mini_test, super_scaffolding, standardrb, db_schema]
secrets: inherit
with:
heroku-app-name: "bullettrain-co"