Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci

on:
push:
branches: [main]
pull_request:

permissions:
contents: read

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run check
- run: npm test
- run: npm run build
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ decode@thecyphering.com

## about this repo

[![ci](https://github.com/cipher813/the-cyphering/actions/workflows/ci.yml/badge.svg)](https://github.com/cipher813/the-cyphering/actions/workflows/ci.yml)
[![license: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![built with astro](https://img.shields.io/badge/built%20with-astro-BC52EE?logo=astro&logoColor=white)](https://astro.build)

The artist site for **thecyphering.com** — a single page that doubles as the
link hub for the instagram bio link. it shows upcoming pre-saves, a two-line
intro, and a continuously-playing spotify embed.
Expand All @@ -55,8 +59,12 @@ deployed as a static site on Cloudflare Pages.
```
npm install
npm run dev # http://localhost:4321
npm test # releases.json + links.ts contract tests (vitest)
npm run check # astro type check
```

CI (`.github/workflows/ci.yml`) runs check → test → build on every push/PR.

### edit the links

All platform destinations live in **`src/data/links.ts`** (`LINKS`). Platform
Expand Down
Loading
Loading