Skip to content

Commit

Permalink
WIP.
Browse files Browse the repository at this point in the history
  • Loading branch information
Syndesi committed Mar 2, 2024
1 parent fe73040 commit 1367cd2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
code-style:
runs-on: ubuntu-latest
name: 'Check code style for Node.js v${{ matrix.node-version }}'
needs:
- yml-lint
- markdown-lint
strategy:
fail-fast: false
matrix:
Expand All @@ -50,6 +53,9 @@ jobs:
test-unit:
runs-on: ubuntu-latest
name: 'Check unit tests for Node.js v${{ matrix.node-version }}'
needs:
- yml-lint
- markdown-lint
strategy:
fail-fast: false
matrix:
Expand All @@ -74,6 +80,9 @@ jobs:
test-feature:
runs-on: ubuntu-latest
name: 'Check feature tests for Node.js v${{ matrix.node-version }}'
needs:
- yml-lint
- markdown-lint
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 0 additions & 1 deletion docs/events/element/get-element-event.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ console.log(getElementEvent.getElement());
```

<!-- tabs:end -->

7 changes: 4 additions & 3 deletions test/.markdownlintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"default": true,
"MD013": {
"line_length": 120
},
"MD013": false,
"MD028": false,
"MD033": false,
"MD038": false,
"MD041": false
}
6 changes: 1 addition & 5 deletions test/.yamllint
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
extends: default


ignore: |
node_modules/

Expand All @@ -9,10 +8,7 @@ rules:
document-start:
present: false

line-length:
max: 120
# allow-non-breakable-words: true
# allow-non-breakable-inline-mappings: false
line-length: false

comments-indentation: false
truthy: false
Expand Down

0 comments on commit 1367cd2

Please sign in to comment.