Fix issue with key aliases not working with checkKey and bindKey #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint & Test | |
on: | |
push: | |
branches: master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Check Linting and Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run Linter | |
run: pnpm lint | |
- name: Build Source | |
run: pnpm build | |
- name: Run Tests | |
run: pnpm test |