Skip to content

feat(#2762): Simplify pipelines for develop and main branches #793

feat(#2762): Simplify pipelines for develop and main branches

feat(#2762): Simplify pipelines for develop and main branches #793

Workflow file for this run

# CI/CD for develop branch
name: CI/CD (develop)
on:
push:
branches: [ develop ]
jobs:
accessibility:
uses: ./.github/workflows/include/accessibility.yml

Check failure on line 11 in .github/workflows/cicd_develop.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cicd_develop.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
lint:
uses: ./.github/workflows/include/linter.yml
test:
uses: ./.github/workflows/include/test.yml
needs: lint
build_deploy:
needs: test
environment: staging
uses: ./.github/workflows/include/build_and_deploy.yml