Skip to content

Fixed #16360 | Data filter and sorting issue on v18 table #2777

Fixed #16360 | Data filter and sorting issue on v18 table

Fixed #16360 | Data filter and sorting issue on v18 table #2777

Workflow file for this run

name: Pr Checker
on:
pull_request:
types: [edited, synchronize, opened, reopened]
permissions:
contents: read
pull-requests: write
jobs:
pr-open-check:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Verify Linked Issue
uses: hattan/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: 'Thanks a lot for your contribution! But, PR does not seem to be linked to any issues. Please [manually link to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#manually-linking-a-pull-request-or-branch-to-an-issue-using-the-issue-sidebar).'
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install packages
run: |
pnpm install
- name: Code Format
id: codeFormat
run: |
pnpm run format:check
#- name: Unit Test
# id: unitTest
# run: |
# pnpm run test:headless
- name: Add Code Format Fail Comment
if: always() && steps.codeFormat.outcome == 'failure'
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Thanks a lot for your contribution! But, PR does not seem to fit our code format standards. Please run the 'pnpm run format' command and commit the changes.
#- name: Add Unit Test Fail Comment
# if: always() && steps.unitTest.outcome == 'failure'
# uses: thollander/actions-comment-pull-request@v1
# with:
# message: |
# Thanks a lot for your contribution! But, Unit tests failed. You can check the unit tests with the command 'pnpm run test:headless' and commit the changes.
# - name: Add Label
# if: ${{ failure() }}
# uses: actions-ecosystem/action-add-labels@v1
# with:
# labels: 'Resolution: Needs Revision'
# - name: Remove Label
# uses: actions-ecosystem/action-remove-labels@v1
# if: ${{ success() }}
# with:
# labels: 'Resolution: Needs Revision'