Skip to content

Commit fec9f4b

Browse files
authored
Angular 15 (#1108)
* minor script updates * single run for karma * update gha settings * ng 14 * material 14 * update router settings * flex layout 14 * ng 15 * material 15 * upgrade libs * update libs * fxlayout upgrade * update libs * Revert "update libs" This reverts commit ef0ac1a. * update lock file * bump version * fix gha job
1 parent c1d704d commit fec9f4b

File tree

17 files changed

+4926
-4466
lines changed

17 files changed

+4926
-4466
lines changed

.github/workflows/nodejs.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/pull-request.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node: 14
19+
cache: 'npm'
20+
node-version: 14
21+
- name: Test
22+
run: |
23+
npm ci
24+
npm run lint
25+
npm run spellcheck
26+
npm run test:ci
27+
npm run build:prod
28+
env:
29+
CI: true

angular.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"newProjectRoot": "projects",
55
"cli": {
66
"packageManager": "npm",
7-
"defaultCollection": "@angular-eslint/schematics"
7+
"schematicCollections": [
8+
"@angular-eslint/schematics"
9+
]
810
},
911
"projects": {
1012
"app": {
@@ -268,10 +270,15 @@
268270
}
269271
}
270272
},
271-
"defaultProject": "app",
272273
"schematics": {
273274
"@schematics/angular:component": {
274275
"style": "scss"
276+
},
277+
"@angular-eslint/schematics:application": {
278+
"setParserOptionsProject": true
279+
},
280+
"@angular-eslint/schematics:library": {
281+
"setParserOptionsProject": true
275282
}
276283
}
277284
}

0 commit comments

Comments
 (0)