Skip to content

Commit 658f303

Browse files
authored
chore(deps): update to angular 18 (#134)
1 parent f317d81 commit 658f303

File tree

11 files changed

+15882
-11669
lines changed

11 files changed

+15882
-11669
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [14.x, 16.x, 18.x]
14+
node-version: [18.x, 20.x, 22.x]
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- run: npm ci
2222
- run: npm run build
2323
- run: npm run build:demo
24-
- run: npm test -- --coverage
25-
- name: SonarCloud Scan
26-
if: startsWith(matrix.node-version, '16')
27-
uses: sonarsource/sonarcloud-github-action@master
28-
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
24+
- run: npm test

angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,18 +100,18 @@
100100
"serve": {
101101
"builder": "@angular-devkit/build-angular:dev-server",
102102
"options": {
103-
"browserTarget": "demo:build"
103+
"buildTarget": "demo:build"
104104
},
105105
"configurations": {
106106
"production": {
107-
"browserTarget": "demo:build:production"
107+
"buildTarget": "demo:build:production"
108108
}
109109
}
110110
},
111111
"extract-i18n": {
112112
"builder": "@angular-devkit/build-angular:extract-i18n",
113113
"options": {
114-
"browserTarget": "demo:build"
114+
"buildTarget": "demo:build"
115115
}
116116
},
117117
"test": {

0 commit comments

Comments
 (0)