Skip to content

Commit 6b494c2

Browse files
committed
Merge branch 'develop'
2 parents ed84ada + f55456f commit 6b494c2

File tree

4 files changed

+36
-4
lines changed

4 files changed

+36
-4
lines changed

.github/workflows/pr.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff 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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

os2web_audit.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "OS2web Audit"
22
description: 'OS2web Audit Module (log events in the system)'
33
type: module
4-
core_version_requirement: ^8 || ^9 || ^10
4+
core_version_requirement: ^8 || ^9 || ^10 || ^11
55
dependencies:
66
- drupal:advancedqueue
77
configure: os2web_audit.plugin_settings_local_tasks

package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

0 commit comments

Comments
 (0)