feat: allow custom limits of microdrags whilst selecting #202
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: CI | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
- name: Install Parent Folder | |
run: npm install | |
- name: Ensure no package-lock.json changes | |
run: git diff --exit-code | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm run test | |
env: | |
CI: true |