Skip to content

feat(ascii): proportion art for terminal cell + add Aspect slider #22

feat(ascii): proportion art for terminal cell + add Aspect slider

feat(ascii): proportion art for terminal cell + add Aspect slider #22

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
# Run the bundled JS actions on the Node 24 runtime (silences the Node 20
# deprecation warning; the action versions themselves are unchanged).
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22' # matches .nvmrc
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
branch: gh-pages