-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. We don’t want to use third-party UUID implementation; browsers ship their own and Node surely is going to. The CLI package is provisional and doesn’t need to work for now. 2. I believe there have been some changes that break convertors, such as removing the `fullPath` parameter from File objects. This parameter is used by, e.g., the glossarist-ruby convertor. This reverts commit b5053f6.
- Loading branch information
1 parent
f81a8e7
commit 5735aa6
Showing
12 changed files
with
101 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: links | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- staging | ||
pull_request: | ||
|
||
jobs: | ||
link_checker: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: production | ||
steps: | ||
- name: Use Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.x' | ||
|
||
- uses: actions/checkout@master | ||
|
||
- name: Enable Yarn Berry | ||
run: | | ||
corepack enable | ||
corepack prepare yarn@stable --activate | ||
# - name: Compile all packages | ||
# # TODO: Get rid of, the esbuild step should be sufficient. | ||
# # However, currently some packages rely on `compiled/` paths, | ||
# # which are created by running `compile` commands. | ||
# run: | | ||
# yarn compile-all | ||
|
||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v3 | ||
|
||
- name: Build site | ||
run: | | ||
yarn workspace webgui build --debug | ||
- name: Link Checker | ||
uses: lycheeverse/[email protected] | ||
with: | ||
args: --verbose --no-progress --exclude-file .lycheeignore -- _site/**/*.html | ||
fail: true | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
# - name: Create Issue From File | ||
# uses: peter-evans/create-issue-from-file@v2 | ||
# with: | ||
# title: Link Checker Report | ||
# content-filepath: ./lychee/out.md | ||
# labels: report, automated issue |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters