chore/gitea-act-runner #14

Closed
volker.raschek wants to merge 38 commits from chore/gitea-act-runner into master
Showing only changes of commit cc955c6178 - Show all commits

View File

@ -21,7 +21,9 @@ jobs:
apk add git apk add git
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v4.2.2
- name: Verify links in markdown files - name: Verify links in markdown files
run: npm install && npm run readme:link run: |
npm install
npm run readme:link
markdown-lint: markdown-lint:
container: container:
@ -34,8 +36,10 @@ jobs:
apk update apk update
apk add git apk add git
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v4.2.2
- name: Link markdown files - name: Lint markdown files
run: npm install && npm run readme:lint run: |
npm install
npm run readme:lint
generate-parameters: generate-parameters:
container: container:
@ -49,6 +53,8 @@ jobs:
apk add git apk add git
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v4.2.2
- name: Generate parameter section in README - name: Generate parameter section in README
run: npm run readme:parameters run: |
npm install
npm run readme:parameters
- name: Compare diff - name: Compare diff
run: git diff --exit-code --name-only README.md run: git diff --exit-code --name-only README.md