Skip to content

Merge branch 'bugfix/4730-carousel-buttons-on-staff-module' of github… #399

Merge branch 'bugfix/4730-carousel-buttons-on-staff-module' of github…

Merge branch 'bugfix/4730-carousel-buttons-on-staff-module' of github… #399

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