Skip to content

[9965] Add VepplePanoramaBlock to Guide Pages #391

[9965] Add VepplePanoramaBlock to Guide Pages

[9965] Add VepplePanoramaBlock to Guide Pages #391

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