Skip to content

Merge branch 'feature/add-shorthand-embed-options-to-editorial-pages'… #380

Merge branch 'feature/add-shorthand-embed-options-to-editorial-pages'…

Merge branch 'feature/add-shorthand-embed-options-to-editorial-pages'… #380

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