Skip to content

fix(ui): disable the global keyboard shortcuts when another modal is … #75

fix(ui): disable the global keyboard shortcuts when another modal is …

fix(ui): disable the global keyboard shortcuts when another modal is … #75

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'sbt'
- name: Build and Test
run: sbt -v test
package-nginx:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./ui/
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'sbt'
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: './ui'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build