Skip to content

feat: fix solver, add audio feedback, auto-solve with speed presets #35

feat: fix solver, add audio feedback, auto-solve with speed presets

feat: fix solver, add audio feedback, auto-solve with speed presets #35

Workflow file for this run

name: Deploy to GitHub Pages
permissions:
contents: write
on:
push:
branches: [ main ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Commit and push docs
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add docs/ -f
git diff --staged --quiet || git commit -m "chore: build and deploy to GitHub Pages"
git push