Skip to content

Commit 5110fad

Browse files
authored
Remove old validation and build system (#2070)
2 parents 5955701 + d244d7c commit 5110fad

33 files changed

+19
-1965
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,33 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@main
14+
- name: Checkout
15+
uses: actions/checkout@v4
1516

16-
- name: Use Node.js
17-
uses: actions/setup-node@main
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: '20'
21+
cache: 'npm'
1822

1923
- name: Install dependencies
20-
run: npm install
24+
run: npm ci
2125

22-
- name: Run validation
23-
run: npm run validate
26+
- name: Build site
27+
run: npm run build
28+
env:
29+
NODE_OPTIONS: '--max-old-space-size=8192'
30+
31+
- name: Verify build output
32+
run: |
33+
echo "Build completed successfully"
34+
echo "Pages generated: $(find dist -name '*.html' | wc -l)"

bin/build-site.js

Lines changed: 0 additions & 309 deletions
This file was deleted.

bin/rename.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

bin/serve-site.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)