File tree Expand file tree Collapse file tree 2 files changed +36
-5
lines changed
Expand file tree Collapse file tree 2 files changed +36
-5
lines changed Original file line number Diff line number Diff line change 1+ # Do not edit this file! Make a pull request on changing
2+ # github/workflows/styles.yaml in
3+ # https://github.com/itk-dev/devops_itkdev-docker if need be.
4+
5+ # ## Styles (CSS and SCSS)
6+ # ##
7+ # ## Validates styles files.
8+ # ##
9+ # ## #### Assumptions
10+ # ##
11+ # ## 1. A docker compose service named `prettier` for running
12+ # ## [Prettier](https://prettier.io/) exists.
13+
14+ name : Styles
15+
16+ on :
17+ pull_request :
18+ push :
19+ branches :
20+ - main
21+ - develop
22+
23+ jobs :
24+ styles-lint :
25+ runs-on : ubuntu-latest
26+ strategy :
27+ fail-fast : false
28+ steps :
29+ - name : Checkout
30+ uses : actions/checkout@v4
31+
32+ - run : |
33+ docker network create frontend
34+
35+ - run : |
36+ docker compose run --rm prettier 'web/themes/custom/**/css/**' --check
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments