From d62e8922dbe6cda8df0b60e36814aab95cc84810 Mon Sep 17 00:00:00 2001 From: Lilith River Date: Mon, 21 Oct 2024 18:15:01 -0600 Subject: [PATCH] Try to get CI working --- .github/workflows/ci.yml | 6 +++--- README.md | 5 +---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4466067..259b65b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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' diff --git a/README.md b/README.md index c6d81f5..106d54e 100644 --- a/README.md +++ b/README.md @@ -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 ) }), ], });