Skip to content

Merge tag 'v1.6.18' #54

Merge tag 'v1.6.18'

Merge tag 'v1.6.18' #54

<<<<<<< HEAD

Check failure on line 1 in .github/workflows/ci-cd-pipeline-main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-cd-pipeline-main.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
# This workflow will run whenever commits land on the main branch.
#
# It will run tests and a few safety checks.
#
# If everything passes it can be set to auto-deploy to your production app on Heroku.
#
# This workflow is primarily meant to be triggered automatically, but it can be run manually.
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
standardrb:
name: 🔬 Standardrb
uses: ./.github/workflows/_standardrb.yml
secrets: inherit
db_schema:
name: 🔎 DB Schema
uses: ./.github/workflows/_database_schema_check.yml
secrets: inherit
# If you'd like to auto-deploy to your production environment you can uncomment this next block.
# You'll need to set HEROKU_EMAIL and HEROKU_API_KEY in your repo secrets.
# Be sure to set the app name correctly below.
deploy:
name: 🚢 Deploy to Heroku
uses: ./.github/workflows/_deploy_heroku.yml
needs: [mini_test, standardrb, db_schema]
secrets: inherit
with:
heroku-app-name: "bullettrain-co"
||||||| 3ff18b8
=======
# This workflow will run whenever commits land on the main branch.
#
# It will run tests and a few safety checks.
#
# If everything passes it can be set to auto-deploy to your production app on Heroku.
#
# This workflow is primarily meant to be triggered automatically, but it can be run manually.
name: " 🎥 Main CI (prod)"
on:
workflow_dispatch:
push:
branches: [ "main" ]
jobs:
minitest:
name: 🧪 Minitest
uses: ./.github/workflows/_run_tests.yml
secrets: inherit
standardrb:
name: 🔬 Standardrb
uses: ./.github/workflows/_standardrb.yml
secrets: inherit
db_schema:
name: 🔎 DB Schema
uses: ./.github/workflows/_database_schema_check.yml
secrets: inherit
# If you'd like to auto-deploy to your production environment you can uncomment this next block.
# You'll need to set HEROKU_EMAIL and HEROKU_API_KEY in your repo secrets.
# Be sure to set the app name correctly below.
# deploy:
# name: 🚢 Deploy to Heroku
# uses: ./.github/workflows/_deploy_heroku.yml
# needs: [mini_test, standardrb, db_schema]
# secrets: inherit
# with:
# heroku-app-name: ""
>>>>>>> v1.6.18