Refactor ThemeService and fix duplicate Material theme generation #1123
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: Unit Tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Use Node.js 16.16.0 | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16.0 | |
| - name: Install dependencies | |
| run: npm install --legacy-peer-deps | |
| - name: Test | |
| run: npm test -- --watch=false --browsers=ChromeHeadless |