Skip to content

dnd-list: Fix flickering while dragging top-level items #92

dnd-list: Fix flickering while dragging top-level items

dnd-list: Fix flickering while dragging top-level items #92

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: sh ./install-deps.sh
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Node Modules
run: make node_modules
- name: Check Types
run: make check-types
- name: Check Style
run: make check-style
- name: Build
run: make build-dbg build-chrome-dbg
- name: Test
run: make check-tests
- name: Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage/lcov.info
- name: Make Firefox Package (Debug)
uses: actions/upload-artifact@v3
with:
name: firefox
path: dist/**/*
- name: Make Chrome Package (Debug)
uses: actions/upload-artifact@v3
with:
name: chrome
path: dist-chrome/**/*