Skip to content

Commit

Permalink
Update urlcheck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hillarymarler committed Aug 28, 2024
1 parent 84dce53 commit dbbc471
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/urlcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: Rscript -e 'install.packages("urlchecker")'
- name: Run URL check
run: Rscript -e 'urlchecker::url_check()'

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install broken-link-checker
run: npm install -g broken-link-checker

- name: Run broken-link-checker
run: blc http://localhost:4000 --recursive --follow

0 comments on commit dbbc471

Please sign in to comment.