Skip to content

Commit

Permalink
fix: lychee fails on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
verytactical committed Jan 22, 2025
1 parent 132fe4a commit 89db3cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tact-docs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: yarn deps

- name: Check broken file references in README
if: runner.os != 'macOS' # it's enough to check on Windows and Linux
if: runner.os == 'Linux'
uses: lycheeverse/lychee-action@v2
with:
args: "-n -s file docs/README.md"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
yarn knip
- name: Check broken file references in internal documentation
if: runner.os != 'macOS' # it's enough to check on Windows and Linux
if: runner.os == 'Linux'
uses: lycheeverse/lychee-action@v2
with:
args: "-n -s file --exclude-path node_modules --exclude-path docs './**/*.md'"
Expand Down

0 comments on commit 89db3cb

Please sign in to comment.