Skip to content

fix(hover): correct dynamic hover functionality to work like in apg #533

fix(hover): correct dynamic hover functionality to work like in apg

fix(hover): correct dynamic hover functionality to work like in apg #533

Workflow file for this run

name: Tests
on:
push:
branches: [ '*.x' ]
pull_request:
branches: [ '*.x' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run build
run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run eslint
run: npm run eslint
- name: Run prettier
run: npm run prettier -- --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run tests
run: npm run test:run