fix: resolve all CI failures — remove eVera from README, fix lychee o… #89
This file contains hidden or 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
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate HTML, Links & Playwright | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: | | |
| if [ -f package-lock.json ]; then | |
| npm ci | |
| elif [ -f package.json ]; then | |
| npm install | |
| else | |
| npm init -y && npm install --save-dev @playwright/test http-server | |
| fi | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps chromium | |
| - name: Start static server | |
| run: npx http-server . -p 8080 -s & | |
| - name: Wait for server | |
| run: npx wait-on http://localhost:8080 --timeout 15000 | |
| - name: Run Playwright tests | |
| run: | | |
| if [ -d tests ]; then | |
| npx playwright test tests/ --project=chromium --reporter=list | |
| else | |
| echo "::warning::No tests/ directory found, running site smoke test" | |
| curl -fsSL http://localhost:8080/ -o /dev/null | |
| fi | |
| - name: Link check (offline) | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # Root-relative paths (/favicon.svg, /og-image.png, /index.html#*) | |
| # are valid on the live GitHub Pages site but cannot be resolved by | |
| # the offline checker without a --base URL. Exclude them explicitly. | |
| args: >- | |
| --offline | |
| --no-progress | |
| --verbose | |
| --exclude '^/' | |
| './**/*.html' | |
| fail: true | |
| - name: HTML minification dry-run | |
| run: | | |
| npx --yes html-minifier-terser \ | |
| --collapse-whitespace --remove-comments --minify-css true --minify-js true \ | |
| --output /tmp/min.html index.html 2>/dev/null || echo "(minify check skipped)" | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: test-results | |
| path: test-results/ |