We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ecf8de commit b75944eCopy full SHA for b75944e
.github/workflows/ci.yml
@@ -2,13 +2,12 @@ name: Docs CI
2
3
on:
4
push:
5
- branches: [ main, docs/ui ]
+ branches: [main, docs/ui]
6
pull_request:
7
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
steps:
@@ -22,4 +21,11 @@ jobs:
22
21
- run: npm run lint --if-present
23
- run: npm run build --if-present
24
env:
25
- NODE_OPTIONS: "--max_old_space_size=4096"
+ NODE_OPTIONS: '--max_old_space_size=4096'
+
26
+ # re-run lint:text with junit output for github annotations
27
+ - run: npm run lint:text -- --format junit --output-file lint-report.xml
28
+ - uses: mikepenz/action-junit-report@v3
29
+ if: always()
30
+ with:
31
+ report_paths: 'lint-report.xml'
0 commit comments