Skip to content

Add new keyboard shortcuts to improve UX #32

Add new keyboard shortcuts to improve UX

Add new keyboard shortcuts to improve UX #32

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: 16
cache: "npm"
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run lint
- run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out