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:
117
117
steps :
118
118
- name : Checkout
119
119
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
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 1.2.0] - 2025-07-03
12
+
13
+ - Added drupal 11 compatibility
14
+
11
15
## [ 1.1.0] - 2025-03-11
12
16
13
17
- Added command for retrying jobs.
Original file line number Diff line number Diff line change 1
1
name : " OS2web Audit"
2
2
description : ' OS2web Audit Module (log events in the system)'
3
3
type : module
4
- core_version_requirement : ^8 || ^9 || ^10
4
+ core_version_requirement : ^8 || ^9 || ^10 || ^11
5
5
dependencies :
6
6
- drupal:advancedqueue
7
7
configure : 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