Skip to content

Merge branch 'feature/6447-cta-link-style' of github.com:torchbox/rca… #395

Merge branch 'feature/6447-cta-link-style' of github.com:torchbox/rca…

Merge branch 'feature/6447-cta-link-style' of github.com:torchbox/rca… #395

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [dev, staging, master]
jobs:
lint:
uses: ./.github/workflows/lint.yaml
test:
uses: ./.github/workflows/test.yaml
deploy_production:
if: contains(github.ref, 'master')
needs: [lint, test]
uses: ./.github/workflows/deploy-production.yaml
secrets: inherit
deploy_dev:
if: contains(github.ref, 'dev')
needs: [lint, test]
uses: ./.github/workflows/deploy-dev.yaml
secrets: inherit
deploy_staging:
if: contains(github.ref, 'staging')
needs: [lint, test]
uses: ./.github/workflows/deploy-staging.yaml
secrets: inherit