Update angular to 19 in devextreme-schematics and update data source in tasks page #3455
Workflow file for this run
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: Lint tests | |
| on: [push, pull_request] | |
| jobs: | |
| lint-test: | |
| strategy: | |
| fail-fast: true | |
| runs-on: ubuntu-latest | |
| name: Lint | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Get sources | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Run npm install | |
| env: | |
| PUPPETEER_SKIP_DOWNLOAD: true | |
| run: npm ci --no-audit --no-fund | |
| - name: Run tests | |
| run: npm run lint |