Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b532b15
Rewrite to use astro
nabobalis Jan 25, 2026
00335dc
refactor: improve maintainability of AI-generated site
nabobalis Apr 8, 2026
ec3c457
docs: add unit test instructions to README and CI
nabobalis Apr 8, 2026
aedf7b8
docs: define coding standards and fix audit gaps
nabobalis Apr 8, 2026
4984b41
docs: add block comments to all non-trivial Astro components
nabobalis Apr 8, 2026
9b7796d
sync: port upstream updates to vaex_alternatives.md and document sync…
nabobalis Apr 8, 2026
591a72c
resolve: merge upstream/main — keep Astro versions of conflicting files
nabobalis Apr 8, 2026
62ab88a
ci: split into parallel jobs, share build artifact for linkcheck
nabobalis Apr 9, 2026
ac725c4
ci: clean up DAG — build gates on quality, linkcheck gates on build
nabobalis Apr 9, 2026
cd6f4bc
ci: fix CircleCI preview and skip artifact URLs in linkcheck
nabobalis Apr 9, 2026
00d64a3
fix: resolve all lint errors in 2026 GSoC project files
nabobalis Apr 9, 2026
6d0aed0
ci: remove redundant link check from CircleCI
nabobalis Apr 9, 2026
072af01
fix: correct CircleCI preview by removing ASTRO_BASE and post-process…
nabobalis Apr 9, 2026
e817f05
fix: update broken links and populate linkcheck skip list
nabobalis Apr 9, 2026
62b948d
faster link check
nabobalis Apr 9, 2026
d37b18c
Remove .github/copilot-instructions.md
nabobalis Apr 9, 2026
555399f
docs: fix README inaccuracies
nabobalis Apr 9, 2026
f0f05cc
chore: remove empty directories
nabobalis Apr 9, 2026
d21f9a9
chore: optimise OG image (451 KB PNG → 48 KB JPEG)
nabobalis Apr 9, 2026
be16408
ci: add Dependabot config for GitHub Actions
nabobalis Apr 9, 2026
3a94977
docs: add npm dependency update procedure to CONTRIBUTING.md
nabobalis Apr 9, 2026
3ece2cd
Moose
nabobalis Apr 9, 2026
51979e5
fix(circleci): fix artifact path and preview URL echo
nabobalis Apr 9, 2026
6a7ab10
fix(circleci): use correct output.circle-artifacts.com URL for preview
nabobalis Apr 9, 2026
b54226f
try this
nabobalis Apr 9, 2026
e957b66
minor updates
nabobalis Apr 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
109 changes: 23 additions & 86 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,96 +1,33 @@
# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
version: 2.1
jobs:
build:
build_website:
docker:
# specify the version you desire here
- image: cimg/ruby:2.5
environment:
BUNDLE_PATH: ~/vendor/bundle

working_directory: ~/repo

- image: cimg/node:lts
steps:
- checkout
- run:
name: a merge PR
command: |
if [[ -n "${CIRCLE_PR_NUMBER}" ]]; then
git fetch origin +refs/pull/$CIRCLE_PR_NUMBER/merge:pr/$CIRCLE_PR_NUMBER/merge
git checkout -qf pr/$CIRCLE_PR_NUMBER/merge
fi

- run:
name: fetch submodules
command: git submodule init && git submodule update

# Download and cache dependencies
- restore_cache:
keys:
- rubygems-v1-latest

- run:
name: install dependencies
command: bundle check || bundle install --jobs=4 --retry=3

- run:
name: Jekyll build
command: bundle exec jekyll build -d html 2> std.err

- run:
name: Check Jekyll build
command: |
cat std.err
exit $(wc -l std.err | awk '{print $1}')

- run:
name: HTMLProofer tests
command: |
bundle exec htmlproofer ./html \
--allow-hash-href \
--check-html \
--disable-external \
--file-ignore "/.+\/gsoc\/display\/partials.+/"
# Ignores the path for the angular magic

name: Install dependencies
command: npm ci
- run:
name: HTMLProofer with external
command: |
if [ "${CIRCLE_BRANCH}" = "main" ]; then
bundle exec htmlproofer ./html \
--allow-hash-href \
--check-html \
--file-ignore "/.+\/gsoc\/display\/partials.+/","/.+\/gsoc\/gsoc201[5-9].+/","/.+\/html/projects/201[5-9].+/","/.+\/gsoc\/gsoc202[0-2].+/","/.+\/html/projects/202[0-2].+/" \
--http-status-ignore 302
# Ignore old ideas pages and ssl certificates that error.
fi


name: Build site
command: npm run build
- run:
name: Jekyll re-build for local
name: Patch asset paths for artifact viewer
# Astro emits processed assets at absolute /_astro/ paths. In CircleCI's
# artifact viewer these must be prefixed with the full artifact URL path.
# Navigation links and CSS use relative paths (fromSiteRoot) so they
# already resolve correctly and need no changes.
command: |
echo "url: https://output.circle-artifacts.com" > circle.yml
bundle exec jekyll build -d html -b "/output/job/${CIRCLE_WORKFLOW_JOB_ID}/artifacts/0/html" --config _config.yml,circle.yml
find ./html/ -type f -iname '*html' | xargs -I{} sed -i \
-e 's|href="\(\.\/.*\/\)"|href="\1index.html"|g' \
-e '/0\/html/ s|href="\(\/.*\/\)"|href="\1index.html"|g' {}
# Replace pages ending on `/` from our site to direct to index.html


- run:
name: "Built documentation is available at:"
command: DOCS_URL="${CIRCLE_BUILD_URL}/artifacts/${CIRCLE_NODE_INDEX}/html/index.html"; echo $DOCS_URL


- save_cache:
paths:
- ~/vendor/bundle
key: rubygems-v1-latest

# collect reports
node scripts/circleci-preview.mjs \
"/output/job/${CIRCLE_WORKFLOW_JOB_ID}/artifacts/${CIRCLE_NODE_INDEX}/html"
- store_artifacts:
path: ~/repo/html
path: html
destination: html
- run:
name: "Preview URL"
command: echo "https://output.circle-artifacts.com/output/job/${CIRCLE_WORKFLOW_JOB_ID}/artifacts/${CIRCLE_NODE_INDEX}/html/index.html"

workflows:
preview_website:
jobs:
- build_website
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
118 changes: 118 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
name: CI

on:
pull_request:
push:

permissions:
contents: read

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
# --- parallel quality checks ---

format:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: Check formatting
run: npm run format:check

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: Lint source
run: npm run lint -- --max-warnings=0
- name: Lint Markdown
run: npm run lint:md

typecheck:
name: Type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: Astro type check
run: npm run astro:check

test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: Run unit tests
run: npm test

# --- build (runs after all quality checks pass) ---

build:
name: Build
runs-on: ubuntu-latest
needs: [format, lint, typecheck, test]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: Build site
run: npm run build
- name: Upload site artifact
uses: actions/upload-artifact@v4
with:
name: site
path: html/
retention-days: 1

# --- link checks (share the single build artifact) ---

linkcheck:
name: Link check (${{ matrix.mode }})
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
mode:
- internal
- external
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: Download site artifact
uses: actions/download-artifact@v4
with:
name: site
path: html/
- name: Run link checks
run: npm run linkcheck:${{ matrix.mode }}
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
*~
_site/
.sass-cache/
Gemfile.lock
vendor/
.astro/
.bundle
.history
.sass-cache/
*~
dist/
html/
node_modules/
vendor/
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

4 changes: 4 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"globs": ["**/*.{md,mdx}"],
"ignores": ["**/node_modules/**", "**/html/**", "**/.history/**"],
}
11 changes: 11 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"MD013": false,
"MD033": false,
"MD041": false,
"MD024": {
"siblings_only": true
},
"MD025": {
"front_matter_title": ""
}
}
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
html/
11 changes: 11 additions & 0 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};
Loading
Loading