Make reset button (flashcard review modal) enabled for both new and due cards #182
Workflow file for this run
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 and Test | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
lint_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm install -g pnpm && pnpm install | |
- name: Lint | |
run: pnpm lint | |
- name: Test | |
run: pnpm test |