Add swipe-to-dismiss functionality for users on smaller screens #28309
Workflow file for this run
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 Build Check | |
on: | |
push: | |
paths-ignore: | |
- 'apps-rendering/**' | |
- 'dotcom-rendering/docs/**' | |
jobs: | |
build_check: | |
name: DCR Build Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node environment | |
uses: ./.github/actions/setup-node-env | |
- name: Generate production build | |
run: make build | |
working-directory: dotcom-rendering | |
- name: Validate Build | |
run: make buildCheck | |
working-directory: dotcom-rendering |