Skip to content

Commit 74291a4

Browse files
author
Sascha Nowak
committed
fix: adjust gh action build
1 parent 4a6a657 commit 74291a4

8 files changed

Lines changed: 16 additions & 88 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,4 @@ jobs:
5757
id: test-action
5858
uses: ./
5959
with:
60-
milliseconds: 2000
61-
62-
- name: Print Output
63-
id: output
64-
run: echo "${{ steps.test-action.outputs.time }}"
60+
filename: __tests__/data/clover1.xml

.github/workflows/licensed.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: super-linter/super-linter/slim@v8
4747
env:
4848
DEFAULT_BRANCH: main
49-
FILTER_REGEX_EXCLUDE: dist/**/*
49+
FILTER_REGEX_EXCLUDE: (dist|__tests__/data)/**/*
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
LINTER_RULES_PATH: .
5252
VALIDATE_ALL_CODEBASE: true

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on: # rebuild any PRs and main branch changes
66
- main
77
- 'releases/*'
88

9+
permissions: read-all
10+
911
jobs:
1012
build: # make sure build/ci work properly
1113
runs-on: ubuntu-latest

.markdown-lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ MD030:
1919
ul_multi: 1
2020
ol_multi: 1
2121

22+
# Inline HTML
23+
MD033:
24+
allowed_elements: ['a', 'code', 'em', 'strong', 'br', 'table', 'td', 'tr', 'th', 'details', 'summary']
25+
2226
# Code block style
2327
MD046:
2428
style: fenced

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Coverage](./badges/coverage.svg)](./badges/coverage.svg)
88

99
A GitHub Action that reads Clover format code coverage files from your test
10-
suite and outputs a markdown summary. This summary can be posted as a Pull
10+
suite and outputs a Markdown summary. This summary can be posted as a Pull
1111
Request comment or included in Release Notes by other actions to give you an
1212
immediate insight into the health of your code without using a third-party site.
1313
Code Coverage Summary is designed for use with any test framework that outputs
@@ -115,7 +115,7 @@ value must be in quotes.
115115

116116
```yaml
117117
- name: Code Coverage Summary Report
118-
uses: saschanowak/CloverCodeCoverageSummary@1.1.0
118+
uses: saschanowak/CloverCodeCoverageSummary@1.1.1
119119
with:
120120
filename: clover.xml
121121
```
@@ -147,9 +147,9 @@ Version numbers will be assigned according to the
147147
[Semantic Versioning](https://semver.org/) scheme. This means, given a version
148148
number MAJOR.MINOR.PATCH, we will increment the:
149149
150-
1. MAJOR version when we make incompatible API changes
151-
2. MINOR version when we add functionality in a backwards compatible manner
152-
3. PATCH version when we make backwards compatible bug fixes
150+
- MAJOR version when we make incompatible API changes
151+
- MINOR version when we add functionality in a backward compatible manner
152+
- PATCH version when we make backward compatible bugfixes
153153
154154
## Contributing
155155

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)