multiple bug fixes including sender ID filtering
This commit is contained in:
39
public/assets/vendors/tabulator-master/.github/workflows/bad-files-check.yml
vendored
Normal file
39
public/assets/vendors/tabulator-master/.github/workflows/bad-files-check.yml
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
name: Bad files check
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: Dist check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
- name: Get specific changed files in dist
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v41
|
||||
with:
|
||||
files: |
|
||||
dist
|
||||
|
||||
- name: Check file existence
|
||||
id: check_files
|
||||
uses: andstor/file-existence-action@v1
|
||||
with:
|
||||
files: "yarn.lock"
|
||||
|
||||
- name: Fail if dist files changed
|
||||
if: steps.changed-files-specific.outputs.any_changed == 'true'
|
||||
run: |
|
||||
echo "Oops! Looks like you modified some files in dist/. Please remove them from your PR, thanks!"
|
||||
exit 1
|
||||
|
||||
- name: Fail if yarn lock exists
|
||||
if: steps.check_files.outputs.files_exists == 'true'
|
||||
run: |
|
||||
echo "Oops! Looks like you checked in a yarn.lock file, we use npm and package-lock.json. Please remove it from your PR, thanks!"
|
||||
exit 1
|
||||
31
public/assets/vendors/tabulator-master/.github/workflows/lint-and-test.yml
vendored
Normal file
31
public/assets/vendors/tabulator-master/.github/workflows/lint-and-test.yml
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
name: Lint and build
|
||||
on:
|
||||
# Trigger the workflow on push or pull request,
|
||||
# but only for the main branch
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
linting:
|
||||
name: Linting
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Lint
|
||||
run: npm run lint
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
32
public/assets/vendors/tabulator-master/.github/workflows/playwright.yml
vendored
Normal file
32
public/assets/vendors/tabulator-master/.github/workflows/playwright.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Playwright Tests
|
||||
on:
|
||||
push:
|
||||
branches: [ main, master ]
|
||||
pull_request:
|
||||
branches: [ main, master ]
|
||||
jobs:
|
||||
test:
|
||||
timeout-minutes: 60
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18, 20, 22]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Install Playwright Browsers
|
||||
run: npx playwright install --with-deps
|
||||
- name: Build dist files
|
||||
run: npm run build
|
||||
- name: Run Playwright tests
|
||||
run: npx playwright test
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: ${{ !cancelled() }}
|
||||
with:
|
||||
name: playwright-report-node-${{ matrix.node-version }}
|
||||
path: playwright-report/
|
||||
retention-days: 30
|
||||
22
public/assets/vendors/tabulator-master/.github/workflows/unit-tests.yml
vendored
Normal file
22
public/assets/vendors/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