remove commented out css #15485
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DCR CICD | |
on: | |
push: | |
paths-ignore: | |
- 'apps-rendering/**' | |
jobs: | |
container: | |
permissions: | |
packages: write | |
uses: ./.github/workflows/container.yml | |
prettier: | |
uses: ./.github/workflows/prettier.yml | |
jest: | |
uses: ./.github/workflows/jest.yml | |
lint: | |
uses: ./.github/workflows/lint.yml | |
playwright: | |
needs: [container] | |
uses: ./.github/workflows/playwright.yml | |
with: | |
container-image: ${{ needs.container.outputs.container-image }} | |
amp: | |
needs: [container] | |
uses: ./.github/workflows/amp.yml | |
with: | |
container-image: ${{ needs.container.outputs.container-image }} | |
publish: | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: write # required by riff-raff action | |
needs: [container, prettier, jest, lint, playwright, amp] | |
uses: ./.github/workflows/publish.yml | |
with: | |
container-image: ${{ needs.container.outputs.container-image }} | |
secrets: | |
GU_RIFF_RAFF_ROLE_ARN: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }} |