Sync with Kendo UI Professional #754
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| paths: | |
| - ".github/workflows/ci.yml" | |
| - "package.json" | |
| - "gulpfile.js" | |
| - "build/**" | |
| - "src/**" | |
| - "tests/**" | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install | |
| run: npm ci --no-audit --no-fund | |
| - name: Build | |
| run: npm run build | |
| - name: Install Playwright Deps | |
| run: npx -y playwright install --with-deps chromium | |
| - name: Tests | |
| run: npm run test |