Code for https://gm112.neocities.org/ gm112.neocities.org/

ci: add ci pipeline

+24
+24
.tangled/workflows/ci.yaml
··· 1 + when: 2 + - event: ['pull_request'] 3 + - event: ['manual'] 4 + engine: 'nixery' 5 + 6 + dependencies: 7 + nixpkgs: 8 + - busybox 9 + - curl 10 + - nodejs 11 + 12 + environment: 13 + CI: 1 14 + NO_COLOR: true 15 + 16 + steps: 17 + - name: Build gm112.neocities.org 18 + command: | 19 + set -euo pipefail 20 + 21 + # Build site 22 + corepack enable 23 + pnpm install --frozen-lockfile 24 + pnpm generate || pnpm generate # TODO: Remove this once I figure out why the CI intermittently fails