-
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.
Includes Spring 34 and 35 issues. Implement the Link Checker on the 889 Tool #151 Research Issues found with Lighthouse #162 Research Issues found with Lighthouse and address if applicable #269 Dependabot Alert: WS Affected by a DoS When Handlin a Request with many HTTP Headers #261
- Loading branch information
Showing
6 changed files
with
1,261 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Broken Link Checker | ||
on: | ||
push: | ||
paths: | ||
- front-end/** | ||
- .github/** | ||
|
||
jobs: | ||
broken-link-checker: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: 'front-end' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18' | ||
cache: 'npm' | ||
cache-dependency-path: front-end/package-lock.json | ||
|
||
- name: install dependencies | ||
run: npm ci | ||
|
||
- name: Run broken link checker | ||
run: npm run link-checker:ci |
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,10 @@ | ||
{ | ||
"recurse": true, | ||
"headers": { | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0", | ||
"Referer": "http://localhost:5173/" | ||
}, | ||
"skip": [ | ||
], | ||
"verbosity": "debug" | ||
} |
Oops, something went wrong.