DURACOM-229 update ng-bootrap and bootstrap, fix dependencies, fix templates #59
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: NG Dynamic Forms CI | |
| on: | |
| push: | |
| branches: [ master, development ] | |
| pull_request: | |
| branches: [ master, development ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16.x' | |
| - run: npm i --force | |
| - run: npm run build:core && npm run test:core | |
| - run: npm run build:ui-basic && npm run test:ui-basic | |
| - run: npm run build:ui-bootstrap && npm run test:ui-bootstrap | |
| - run: npm run build:ui-foundation && npm run test:ui-foundation | |
| - run: npm run build:ui-ionic && npm run test:ui-ionic | |
| - run: npm run build:ui-material && npm run test:ui-material | |
| - run: npm run build:ui-ng-bootstrap && npm run test:ui-ng-bootstrap | |
| - run: npm run build:ui-ngx-bootstrap && npm run test:ui-ngx-bootstrap | |
| - run: npm run build:ui-primeng && npm run test:ui-primeng | |
| - run: npm run build:sample |