Skip to content

fix(ascii): unify preview and export to one render (restore WYSIWYG) #56

fix(ascii): unify preview and export to one render (restore WYSIWYG)

fix(ascii): unify preview and export to one render (restore WYSIWYG) #56

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# 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:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22' # matches .nvmrc
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npm run check
- name: Unit tests
run: npm test
- name: Build
run: npm run build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
retention-days: 7