Sync with Kendo UI Professional #417
This file contains 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: '18' | |
- name: Install | |
run: npm ci --no-audit --no-fund | |
- name: Build scripts | |
run: npx gulp scripts | |
- name: Karma | |
run: npx gulp karma-ci | |
env: | |
CHROME_BIN: /usr/bin/google-chrome |