File tree Expand file tree Collapse file tree 4 files changed +36
-4
lines changed Expand file tree Collapse file tree 4 files changed +36
-4
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,21 @@ jobs:
117117 steps :
118118 - name : Checkout
119119 uses : actions/checkout@v4
120-
121- - name : Markdown lint
122- run : docker run --rm --volume "$PWD:/md" itkdev/markdownlint markdownlint --ignore vendor '**/*.md'
120+ - name : Get yarn cache directory path
121+ id : yarn-cache-dir-path
122+ run : echo "::set-output name=dir::$(yarn cache dir)"
123+ - name : Cache yarn packages
124+ uses : actions/cache@v4
125+ id : yarn-cache
126+ with :
127+ path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
128+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
129+ restore-keys : |
130+ ${{ runner.os }}-yarn-
131+ - name : Yarn install
132+ uses : actions/setup-node@v2
133+ with :
134+ node-version : ' 20'
135+ - run : yarn install
136+ - name : markdownlint
137+ run : yarn coding-standards-check/markdownlint
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
99## [ Unreleased]
1010
11+ ## [ 1.2.0] - 2025-07-03
12+
13+ - Added drupal 11 compatibility
14+
1115## [ 1.1.0] - 2025-03-11
1216
1317- Added command for retrying jobs.
Original file line number Diff line number Diff line change 11name : " OS2web Audit"
22description : ' OS2web Audit Module (log events in the system)'
33type : module
4- core_version_requirement : ^8 || ^9 || ^10
4+ core_version_requirement : ^8 || ^9 || ^10 || ^11
55dependencies :
66 - drupal:advancedqueue
77configure : os2web_audit.plugin_settings_local_tasks
Original file line number Diff line number Diff line change 1+ {
2+ "devDependencies" : {
3+ "markdownlint-cli" : " ^0.32.2"
4+ },
5+ "license" : " MIT" ,
6+ "private" : true ,
7+ "scripts" : {
8+ "coding-standards-check/markdownlint" : " yarn markdownlint --ignore LICENSE.md *.md" ,
9+ "coding-standards-check" : " yarn coding-standards-check/markdownlint" ,
10+ "coding-standards-apply/markdownlint" : " yarn markdownlint --fix --ignore LICENSE.md *.md" ,
11+ "coding-standards-apply" : " yarn coding-standards-apply/markdownlint"
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments