added messages list, new client form, logic for client Apps plus others
This commit is contained in:
22
public/libs/tabulator-master/.github/workflows/unit-tests.yml
vendored
Normal file
22
public/libs/tabulator-master/.github/workflows/unit-tests.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Unit Tests
|
||||
on:
|
||||
push:
|
||||
branches: [ main, master ]
|
||||
pull_request:
|
||||
branches: [ main, master ]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18, 20, 22]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Install modules
|
||||
run: npm install
|
||||
- name: Run tests
|
||||
run: npm run test:unit
|
||||
Reference in New Issue
Block a user