Skip to content

Commit

Permalink
CI: add link-checking GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Mar 14, 2023
1 parent 24bcdc6 commit 86d1ae4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check links and refcache

on:
pull_request:

jobs:
check-formatting:
name: Check links and refcache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- run: npm install

- name: Build site and check links
run: npm build:preview

- name: Flag refcache changes
run: npm run diff:fail

0 comments on commit 86d1ae4

Please sign in to comment.