Skip to content

fix: shift-click on collection should select it, not navigate to it #6

fix: shift-click on collection should select it, not navigate to it

fix: shift-click on collection should select it, not navigate to it #6

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check build output
run: |
test -f dist/jinks-file-manager.js || exit 1
test -f dist/index.html || exit 1