Skip to content

Ignore keyboard commands if the editor is not in focus #9

Ignore keyboard commands if the editor is not in focus

Ignore keyboard commands if the editor is not in focus #9

Workflow file for this run

name: GitHub Pages Deployment
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install TypeScript
run: npm install -g typescript
- name: Compile TypeScript
run: tsc
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
publish_branch: gh-pages
exclude_assets: .github,src,.gitignore,app.js.map,LICENSE,README.md,tsconfig.json,app.ts
full_commit_message: Deploy to Github Pages