Skip to content

Commit

Permalink
test: debugging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylareopelle committed Oct 16, 2024
1 parent 15b39ff commit e74fc96
Show file tree
Hide file tree
Showing 6 changed files with 220 additions and 208 deletions.
7 changes: 6 additions & 1 deletion .github/actions/test_gem/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ runs:
echo "::endgroup::"
done
else
bundle exec rake test
i=0; while bundle exec rake test
do
echo i: $i
((i=i+1))
done
echo i: $i
fi
working-directory: "${{ steps.setup.outputs.gem_dir }}"

Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/ci-markdown-link.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Markdown Link Check
# name: Markdown Link Check

on:
pull_request:
# on:
# pull_request:

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# jobs:
# markdown-link-check:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

- name: "Markdown Link Check"
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: '.markdown-link-check.json'
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
# - name: "Markdown Link Check"
# uses: gaurav-nelson/github-action-markdown-link-check@v1
# with:
# config-file: '.markdown-link-check.json'
# use-quiet-mode: 'yes'
# use-verbose-mode: 'yes'
34 changes: 17 additions & 17 deletions .github/workflows/ci-markdownlint.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Markdown Lint Check
# name: Markdown Lint Check

on:
pull_request:
# on:
# pull_request:

jobs:
markdownlint-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# jobs:
# markdownlint-check:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

# equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json
- name: "Markdown Lint Check"
uses: DavidAnson/markdownlint-cli2-action@v16
with:
fix: false
globs: |
**/*.md
!**/CHANGELOG.md
continue-on-error: true
# # equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json
# - name: "Markdown Lint Check"
# uses: DavidAnson/markdownlint-cli2-action@v16
# with:
# fix: false
# globs: |
# **/*.md
# !**/CHANGELOG.md
# continue-on-error: true
Loading

0 comments on commit e74fc96

Please sign in to comment.