Skip to content

Commit

Permalink
Try to get CI working
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith committed Oct 22, 2024
1 parent 3451214 commit d62e892
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x, 22.x, 23.x]
astro-version: ['^4', 'beta'] # Astro 4 and Astro 5 beta

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ export default defineConfig({
integrations: [
astroBrokenLinksChecker({
logFilePath: 'broken-links.log', // Optional: specify the log file path
remoteLinksCacheFilePath: 'remote-links-cache.tsv', // Optional: specify the path to a tab-separated file to cache remote links
maxConcurrency: 10, // Optional: specify the maximum number of concurrent link checks
timeout: 3000, // Optional: specify the maximum time in milliseconds for a link check to complete
cacheExpiryMinutes: 30, // Optional: specify the number of minutes after which a cached externallink should be re-checked
checkExternalLinks: false // Optional: check external links (currently, caching to disk is not supported, and it is slow )
}),
],
});
Expand Down

0 comments on commit d62e892

Please sign in to comment.